diff options
| author | horus_arch | 2015-06-15 13:38:47 +0200 |
|---|---|---|
| committer | horus_arch | 2015-06-15 13:38:47 +0200 |
| commit | c79e605b60040c4c0e5c792fa447487c2b8ae246 (patch) | |
| tree | d20c97b59c6252e555618a128ea63f6fa9d016d9 /urlscanner.h | |
| parent | 3a09b2509102d58fe4e52a9a8fa699f6b42dc327 (diff) | |
| download | uhttpd-c79e605b60040c4c0e5c792fa447487c2b8ae246.tar.gz | |
Use flex to extract html. Icono-font used for icons.
Diffstat (limited to 'urlscanner.h')
| -rw-r--r-- | urlscanner.h | 18 |
1 files changed, 18 insertions, 0 deletions
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 |
