2001-10-12 23:19:09 +00:00
|
|
|
#ifndef __PARSER_H__
|
|
|
|
#define __PARSER_H__
|
|
|
|
|
2001-10-25 05:50:21 +00:00
|
|
|
char *token;
|
|
|
|
int tokenlen;
|
|
|
|
int tsearch_yylex(void);
|
|
|
|
void start_parse_str(char *, int);
|
|
|
|
void start_parse_fh(FILE *, int);
|
|
|
|
void end_parse(void);
|
2001-10-28 06:26:15 +00:00
|
|
|
|
2001-10-12 23:19:09 +00:00
|
|
|
#endif
|