aboutsummaryrefslogtreecommitdiff
path: root/src/inc/tokenize.h
diff options
context:
space:
mode:
authorMarvin Borner2021-05-13 12:03:43 +0200
committerMarvin Borner2021-05-13 12:03:43 +0200
commitf181a8f04dfdfd8829861e0d0d549f39e40081e6 (patch)
treed937ae185e4a0dd97fd61b65be0cee01ac85876b /src/inc/tokenize.h
parent879663d7154201ace191425cbddb36dc18f39402 (diff)
New layout
Diffstat (limited to 'src/inc/tokenize.h')
-rw-r--r--src/inc/tokenize.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/inc/tokenize.h b/src/inc/tokenize.h
new file mode 100644
index 0000000..557da9c
--- /dev/null
+++ b/src/inc/tokenize.h
@@ -0,0 +1,35 @@
+#ifndef TOKENIZE_H
+#define TOKENIZE_H
+
+#include <context.h>
+
+#define TOKENS_MAX 4096
+
+enum token_type {
+ UNKNOWN,
+
+ TYPE,
+ TYPEDELIM,
+ PARAM,
+
+ IDENT,
+ OPERATOR,
+
+ LPAREN,
+ RPAREN,
+ EQUAL,
+
+ NEWLINE,
+ EOL,
+ END,
+};
+
+struct token {
+ enum token_type type;
+ size_t start, end;
+};
+
+void tokens_print(struct ctx *ctx);
+void tokenize(struct ctx *ctx);
+
+#endif