From c79e605b60040c4c0e5c792fa447487c2b8ae246 Mon Sep 17 00:00:00 2001 From: horus_arch Date: Mon, 15 Jun 2015 13:38:47 +0200 Subject: Use flex to extract html. Icono-font used for icons. --- urlscanner.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 urlscanner.h (limited to 'urlscanner.h') diff --git a/urlscanner.h b/urlscanner.h new file mode 100644 index 0000000..f815c41 --- /dev/null +++ b/urlscanner.h @@ -0,0 +1,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 -- cgit v1.2.3