xref: /freebsd/usr.sbin/ppp/chat.h (revision b6e82f33ef84ba5eedb0db2e24525e9d0f661b91)
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.8 1997/10/26 01:02:23 brian Exp $
22  *
23  */
24 
25 #define	VECSIZE(v)	(sizeof(v) / sizeof(v[0]))
26 
27 extern char *ExpandString(const char *, char *, int, int);
28 extern int MakeArgs(char *, char **, int);  /* Mangles the first arg ! */
29 extern int DoChat(char *);			/* passes arg to MakeArgs() */
30