blob: 7fb2d0a28686d99db9a772192c28c6b13113a6c7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __PARSER_H__
#define __PARSER_H__
extern char *token;
extern int tokenlen;
int tsearch2_yylex(void);
void tsearch2_start_parse_str(char *, int);
void tsearch2_end_parse(void);
#endif
|