1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef URLSCANNER_H #define URLSCANNER_H #define MYEOF EOF #define TOKEN_URL 257 #define TOKEN_TEXT 258 #ifndef YYSTYPE #define YYSTYPE yystype typedef char* yystype; #endif extern int yylex(); extern yystype yylval; extern int yylineno; extern void scan_string ( const char *str ); #endif