summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-08 19:17:04 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-08 19:17:04 +0330
commitd76c19e0bea07806c49175c91d19eb38cfb230dd (patch)
tree79d84779328c8d0cfb416c2016b9feea64d201e5 /src/compiler/lexer.h
parent46d0c9025eb000670dd6a99f0e74fc928269a3c3 (diff)
add characters
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r--src/compiler/lexer.h2
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);