blob: f3aa0b8c06b7994f3744b8d2a498a2765a1e4636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __PARSER_H__
#define __PARSER_H__
char *token;
int tokenlen;
int tsearch_yylex(void);
void start_parse_str(char *, int);
void start_parse_fh(FILE *, int);
void end_parse(void);
#endif
|