1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00
Files
postgres/contrib/tsearch2/wordparser/parser.h
Teodor Sigaev b88605337e tsearch2 module
2003-07-21 10:27:44 +00:00

12 lines
205 B
C

#ifndef __PARSER_H__
#define __PARSER_H__
char *token;
int tokenlen;
int tsearch2_yylex(void);
void start_parse_str(char *, int);
void start_parse_fh(FILE *, int);
void end_parse(void);
#endif