mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
11 lines
202 B
C
11 lines
202 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
|