aboutsummaryrefslogtreecommitdiff
path: root/inc/tokenize.h
diff options
context:
space:
mode:
authorMarvin Borner2022-02-16 20:44:26 +0100
committerMarvin Borner2022-02-16 20:44:26 +0100
commit5cc450b6e8554f5d982f444b9026447971c94024 (patch)
tree7602f936718bc051b6901580b815cf7f53732f5e /inc/tokenize.h
parent51c4defc436c0d119941eb6d5b953d27b5b8e6f7 (diff)
Huh
Diffstat (limited to 'inc/tokenize.h')
-rw-r--r--inc/tokenize.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/inc/tokenize.h b/inc/tokenize.h
index f5e8600..61fcd67 100644
--- a/inc/tokenize.h
+++ b/inc/tokenize.h
@@ -10,17 +10,19 @@ enum token_type {
TYPE,
TYPEDELIM,
- PARAM,
IDENT,
+ IDENTDELIM,
+ PARAM,
+
+ STRING,
+ NUMBER,
OPERATOR,
LPAREN,
RPAREN,
- EQUAL,
NEWLINE,
- EOL,
END,
SOMETHING,
@@ -32,7 +34,7 @@ struct token {
ctx_string string;
};
-void token_print(struct ctx *ctx, struct token *tok);
+void token_print(struct ctx *ctx, struct token *token);
void tokenize(struct ctx *ctx);
#endif