aboutsummaryrefslogtreecommitdiff
path: root/src/include/token.h
diff options
context:
space:
mode:
authors-over-42023-06-13 21:19:09 -0400
committers-over-42023-06-13 21:19:09 -0400
commit4b0d75d3dbfb85e10ee70c16000c48cf0de95740 (patch)
tree03b1a199f8658b0fde7283bdccf698455f2df44c /src/include/token.h
parent11fbe0ec9b8bf51d237fefee9254e68d3b22259b (diff)
lexer is done. forever.
Diffstat (limited to 'src/include/token.h')
-rw-r--r--src/include/token.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/token.h b/src/include/token.h
index f05e962..5fe9d35 100644
--- a/src/include/token.h
+++ b/src/include/token.h
@@ -45,5 +45,11 @@ int char_could_split_keyword(char* character);
int char_could_start_int(char* character);
int char_can_ignore(char* character);
+int token_char_quote(char c);
+int token_char_grave(char c);
+int token_char_pound(char c);
+int token_char_colon(char c);
+int token_char_kywrd(char c);
+
#endif