postgresql/contrib/tsearch2/wordparser/parser.h

12 lines
205 B
C
Raw Normal View History

2003-07-21 12:27:44 +02:00
#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