chat.h revision 30715
1/*
2 *	    Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 *   Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 *  Most of codes are derived from chat.c by Karl Fox (karl@MorningStar.Com).
7 *
8 *	Chat -- a program for automatic session establishment (i.e. dial
9 *		the phone and log in).
10 *
11 *	This software is in the public domain.
12 *
13 *	Please send all bug reports, requests for information, etc. to:
14 *
15 *		Karl Fox <karl@MorningStar.Com>
16 *		Morning Star Technologies, Inc.
17 *		1760 Zollinger Road
18 *		Columbus, OH  43221
19 *		(614)451-1883
20 *
21 * $Id: chat.h,v 1.7 1997/08/25 00:29:07 brian Exp $
22 *
23 */
24
25#define	VECSIZE(v)	(sizeof(v) / sizeof(v[0]))
26
27extern char *ExpandString(char *, char *, int, int);
28extern int MakeArgs(char *, char **, int);
29extern int DoChat(char *);
30