e68d210e8f
Ignore subsequent args rather than scribbling. PR: 1952 Submitted by: Mikael Hybsch <micke@free.dynas.se>
31 lines
850 B
C
31 lines
850 B
C
/*
|
|
* 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
|
|
*
|
|
* $Id: chat.h,v 1.4 1997/02/22 16:10:07 peter Exp $
|
|
*
|
|
*/
|
|
#ifndef _CHAT_H_
|
|
#define _CHAT_H_
|
|
#include "cdefs.h"
|
|
extern char * ExpandString __P((char *, char *, int, int));
|
|
extern int MakeArgs __P((char *, char **, int));
|
|
#define VECSIZE(v) (sizeof(v) / sizeof(v[0]))
|
|
#endif
|