diff options
Diffstat (limited to 'hc.h')
-rw-r--r-- | hc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,6 +3,7 @@ typedef enum { tok_eof = 0, tok_doctype = 256, tok_text, + tok_wsp, tok_el_unknown, tok_el_a, tok_el_abbr, @@ -219,7 +220,8 @@ typedef enum { typedef struct { int type; - int is_tag; + int is_el; + int is_at; int is_close; char *lexeme; } token_t; |