mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
11 lines
197 B
C
11 lines
197 B
C
#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
|