/* 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. lex.h - 03/20/93 */ #ifndef __LEX_H__ #define __LEX_H__ struct keywords { char *name; int token; }; extern int yylex(void); #endif