Rename lexer string functions

This commit is contained in:
2023-06-18 22:08:47 +01:00
parent 57fe5ab1b7
commit f0043a691c
2 changed files with 16 additions and 15 deletions

View File

@@ -17,9 +17,10 @@ typedef enum {
TK_NULL,
TK_TRUE,
TK_FALSE,
TK_STRING_LITERAL,
TK_INTEGER_LITERAL,
TK_DOUBLE_LITERAL,
TK_STR_KEY,
TK_STR_VAL,
TK_INTEGER,
TK_DOUBLE,
} token_type_t;
typedef union {