chat.c (2dc8d58f59cea2ddb81d33315d788053cc29dcdf) | chat.c (410f13a58d44e0f19306df28a99227015a2a688a) |
---|---|
1/*- 2 * Copyright (c) 1997 3 * David L Nugent <davidn@blaze.net.au>. 4 * All rights reserved. 5 * 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, is permitted provided that the following conditions --- 25 unchanged lines hidden (view full) --- 34 35#include <ctype.h> 36#include <signal.h> 37#include <stdlib.h> 38#include <string.h> 39#include <syslog.h> 40#include <unistd.h> 41 | 1/*- 2 * Copyright (c) 1997 3 * David L Nugent <davidn@blaze.net.au>. 4 * All rights reserved. 5 * 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, is permitted provided that the following conditions --- 25 unchanged lines hidden (view full) --- 34 35#include <ctype.h> 36#include <signal.h> 37#include <stdlib.h> 38#include <string.h> 39#include <syslog.h> 40#include <unistd.h> 41 |
42#include "gettytab.h" |
|
42#include "extern.h" 43 44#define PAUSE_CH (unsigned char)'\xff' /* pause kludge */ 45 46#define CHATDEBUG_RECEIVE 0x01 47#define CHATDEBUG_SEND 0x02 48#define CHATDEBUG_EXPECT 0x04 49#define CHATDEBUG_MISC 0x08 --- 440 unchanged lines hidden --- | 43#include "extern.h" 44 45#define PAUSE_CH (unsigned char)'\xff' /* pause kludge */ 46 47#define CHATDEBUG_RECEIVE 0x01 48#define CHATDEBUG_SEND 0x02 49#define CHATDEBUG_EXPECT 0x04 50#define CHATDEBUG_MISC 0x08 --- 440 unchanged lines hidden --- |