diff options
author | Marvin Borner | 2022-02-20 18:48:30 +0100 |
---|---|---|
committer | Marvin Borner | 2022-02-20 18:48:30 +0100 |
commit | fa02225c5ae8b704408769c70bb47101042762b8 (patch) | |
tree | 2bbd0763fccacd0a35631d6ee9a2176ed836eef5 /inc/tokenize.h | |
parent | 5cc450b6e8554f5d982f444b9026447971c94024 (diff) |
Haskell ftw
Diffstat (limited to 'inc/tokenize.h')
-rw-r--r-- | inc/tokenize.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/inc/tokenize.h b/inc/tokenize.h deleted file mode 100644 index 61fcd67..0000000 --- a/inc/tokenize.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef TOKENIZE_H -#define TOKENIZE_H - -#include <context.h> - -#define TOKENS_MAX 4096 - -enum token_type { - UNKNOWN, - - TYPE, - TYPEDELIM, - - IDENT, - IDENTDELIM, - PARAM, - - STRING, - NUMBER, - OPERATOR, - - LPAREN, - RPAREN, - - NEWLINE, - END, - - SOMETHING, -}; - -struct token { - enum token_type type; - struct ctx_location location; - ctx_string string; -}; - -void token_print(struct ctx *ctx, struct token *token); -void tokenize(struct ctx *ctx); - -#endif |