From 4b0d75d3dbfb85e10ee70c16000c48cf0de95740 Mon Sep 17 00:00:00 2001 From: s-over-4 Date: Tue, 13 Jun 2023 21:19:09 -0400 Subject: lexer is done. forever. --- src/include/token.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/include/token.h') 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 -- cgit v1.2.3