aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorc+12023-05-05 12:14:31 -0400
committerc+12023-05-05 12:14:31 -0400
commit89b5586c1a12ac47c47e609dc31aac597473812f (patch)
tree88c25e532cfb641a7c05122bded78b54c04c50b7 /src/include
parenta0f697a3059cc5173d60beaf9d3a513a0edfbda1 (diff)
h
Diffstat (limited to 'src/include')
-rw-r--r--src/include/lexer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/lexer.h b/src/include/lexer.h
index e002893..e6bee55 100644
--- a/src/include/lexer.h
+++ b/src/include/lexer.h
@@ -9,12 +9,18 @@ typedef struct LEXER_STRUC {
} lexer_t;
lexer_t* lexer_init(char* content);
+
void lexer_next(lexer_t* lexer);
void lexer_pass(lexer_t* lexer);
+
token_t* lexer_get_next_token(lexer_t* lexer);
+
token_t* lexer_get_string(lexer_t* lexer);
+
token_t* lexer_get_id(lexer_t* lexer);
+
token_t* lexer_next_token(lexer_t* lexer, token_t* token);
+
char* lexer_get_c_as_string(lexer_t* lexer);
#endif