2001-10-13 07:19:09 +08:00
|
|
|
#ifndef __PARSER_H__
|
|
|
|
#define __PARSER_H__
|
|
|
|
|
2001-10-25 13:50:21 +08:00
|
|
|
char *token;
|
|
|
|
int tokenlen;
|
|
|
|
int tsearch_yylex(void);
|
|
|
|
void start_parse_str(char *, int);
|
|
|
|
void end_parse(void);
|
2001-10-28 14:26:15 +08:00
|
|
|
|
2001-10-13 07:19:09 +08:00
|
|
|
#endif
|