aboutsummaryrefslogtreecommitdiff
path: root/inc/tokenize.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/tokenize.h')
-rw-r--r--inc/tokenize.h40
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