Added support for string literals in the tokenizer.

This commit is contained in:
2025-01-08 00:26:08 -06:00
parent 7e70c6fd19
commit 6039918707
4 changed files with 81 additions and 18 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
#define KEYWORDS_H
typedef enum {
FN, ORG
FN, ORG, NAMESPACE, DB, CONST
} Keyword;
int IsKeyword(const char* text, Keyword* keyword);