diff options
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r-- | src/compiler/lexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h index 8759e10..42f7aa8 100644 --- a/src/compiler/lexer.h +++ b/src/compiler/lexer.h @@ -36,6 +36,7 @@ typedef enum LexerToken { LEXER_TOKEN_KEYWORD_UNDEFINED, LEXER_TOKEN_NUMBER, + LEXER_TOKEN_CHAR, LEXER_TOKEN_SYMBOL, LEXER_TOKEN_SYMBOL_EOL, @@ -114,3 +115,4 @@ extern bool isNumber(char c); extern bool isSymbol(char c); extern bool isCompleteSymbol(char *str, size_t str_size); extern bool isSpace(char c); +extern bool isString(char c); |