From d76c19e0bea07806c49175c91d19eb38cfb230dd Mon Sep 17 00:00:00 2001 From: A404M Date: Tue, 8 Apr 2025 19:17:04 +0330 Subject: add characters --- src/compiler/lexer.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/compiler/lexer.h') 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); -- cgit v1.2.3