#ifndef _PARSE_H #define _PARSE_H #include #define YYTEXT_SIZE 1024 typedef struct _yyparse_type { char text[YYTEXT_SIZE]; int yytoken; } yyparse_type; #define YYSTYPE yyparse_type void lex_init(FILE* infile); void lex_restart(FILE* infile); int yylex(); extern unsigned char *yytext; extern int currentLine; extern int ignoreWhitespace; extern char currentTitle[]; #endif