1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

Avoid confusion start_parse_str function with tsearch V1

This commit is contained in:
Teodor Sigaev
2003-12-05 14:28:21 +00:00
parent b255350864
commit 84d2ed136c
3 changed files with 9 additions and 8 deletions

View File

@@ -1,10 +1,10 @@
#ifndef __PARSER_H__
#define __PARSER_H__
char *token;
int tokenlen;
extern char *token;
extern int tokenlen;
int tsearch2_yylex(void);
void start_parse_str(char *, int);
void end_parse(void);
void tsearch2_start_parse_str(char *, int);
void tsearch2_end_parse(void);
#endif