1996-01-11 17:48:59 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Most of codes are derived from chat.c by Karl Fox (karl@MorningStar.Com).
|
|
|
|
*
|
|
|
|
* Chat -- a program for automatic session establishment (i.e. dial
|
|
|
|
* the phone and log in).
|
|
|
|
*
|
|
|
|
* This software is in the public domain.
|
|
|
|
*
|
|
|
|
* Please send all bug reports, requests for information, etc. to:
|
|
|
|
*
|
|
|
|
* Karl Fox <karl@MorningStar.Com>
|
|
|
|
* Morning Star Technologies, Inc.
|
|
|
|
* 1760 Zollinger Road
|
|
|
|
* Columbus, OH 43221
|
|
|
|
* (614)451-1883
|
|
|
|
*
|
1997-08-25 00:29:32 +00:00
|
|
|
* $Id: chat.h,v 1.6 1997/06/09 03:27:16 brian Exp $
|
1996-01-11 17:48:59 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef _CHAT_H_
|
|
|
|
#define _CHAT_H_
|
1997-08-25 00:29:32 +00:00
|
|
|
extern char *ExpandString(char *, char *, int, int);
|
1997-06-09 03:27:43 +00:00
|
|
|
extern int MakeArgs(char *, char **, int);
|
1997-08-25 00:29:32 +00:00
|
|
|
|
1997-05-07 23:01:25 +00:00
|
|
|
#define VECSIZE(v) (sizeof(v) / sizeof(v[0]))
|
1996-01-11 17:48:59 +00:00
|
|
|
#endif
|