diff options
Diffstat (limited to 'hc.h')
-rw-r--r-- | hc.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -94,6 +94,7 @@ typedef enum { tok_el_ul, tok_el_var, tok_at_unknown, + tok_at_abbr, tok_at_accept, tok_at_accept_charset, tok_at_accesskey, @@ -223,5 +224,10 @@ typedef struct { char *lexeme; } token_t; +typedef struct { + int type; + int *attr; +} allowed_el_t; + extern int yylex(void); extern char *yytext; |