home *** CD-ROM | disk | FTP | other *** search
- /*
- extract - A network log processor
- Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
-
- Please see the file `COPYING' for the complete copyright notice.
-
- chario.h - 03/20/93
-
- */
- #ifndef __CHARIO_H__
- #define __CHARIO_H__
-
- extern int __lastchar, __pushed;
- #define pushchar(c) {__lastchar = c;__pushed=1;}
-
- extern int fetchar(void);
- extern int getlinenum(void);
- extern char *getfilename(void);
- extern int addmembuf(char *, char *);
- extern int includemembuf(char *, char *);
- extern int addfile(char *);
- extern int includefile(char *);
-
- #define NOERR 0
- #define RECURSE 1
- #define FILEERR 2
-
- #endif
-