chat.c (2253b2881697555e0eab05051f104f7c97da2455) | chat.c (9f65f104f5d16e582ddbf8ccdfa81b324d5d4561) |
---|---|
1/* 2 * Chat -- a program for automatic session establishment (i.e. dial 3 * the phone and log in). 4 * 5 * Standard termination codes: 6 * 0 - successful completion of the script 7 * 1 - invalid argument, expect string too large, etc. 8 * 2 - error on an I/O operation or fatal error condtion. --- 17 unchanged lines hidden (view full) --- 26 * Karl Fox <karl@MorningStar.Com> 27 * Morning Star Technologies, Inc. 28 * 1760 Zollinger Road 29 * Columbus, OH 43221 30 * (614)451-1883 31 * 32 */ 33 | 1/* 2 * Chat -- a program for automatic session establishment (i.e. dial 3 * the phone and log in). 4 * 5 * Standard termination codes: 6 * 0 - successful completion of the script 7 * 1 - invalid argument, expect string too large, etc. 8 * 2 - error on an I/O operation or fatal error condtion. --- 17 unchanged lines hidden (view full) --- 26 * Karl Fox <karl@MorningStar.Com> 27 * Morning Star Technologies, Inc. 28 * 1760 Zollinger Road 29 * Columbus, OH 43221 30 * (614)451-1883 31 * 32 */ 33 |
34static char rcsid[] = "$Id: chat.c,v 1.9 1995/06/12 11:24:15 paulus Exp $"; | 34static char rcsid[] = "$Id: chat.c,v 1.1.1.1 1994/11/12 05:25:32 lars Exp $"; |
35 36#include <stdio.h> 37#include <time.h> 38#include <fcntl.h> 39#include <signal.h> 40#include <errno.h> 41#include <string.h> 42#include <stdlib.h> --- 1307 unchanged lines hidden --- | 35 36#include <stdio.h> 37#include <time.h> 38#include <fcntl.h> 39#include <signal.h> 40#include <errno.h> 41#include <string.h> 42#include <stdlib.h> --- 1307 unchanged lines hidden --- |