aboutsummaryrefslogtreecommitdiff
path: root/src/lexer.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2024-08-25 12:30:48 +0300
committerkartofen <mladenovnasko0@gmail.com>2024-08-25 12:30:48 +0300
commit54f071ac7d47ef515a3f6a4db9e83f2f9aca3c8c (patch)
tree63e9958c5961f32d191c580f6960b6f9eba02f20 /src/lexer.h
parentdf95e5bfca1c5e723b39f25f32401db8f9ebf6fe (diff)
lambda nearly done
Diffstat (limited to 'src/lexer.h')
-rw-r--r--src/lexer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lexer.h b/src/lexer.h
index 7c67028..c2e4637 100644
--- a/src/lexer.h
+++ b/src/lexer.h
@@ -55,4 +55,7 @@ int lexer_token_next(lexer_t lexer, struct token *token);
int token_value_string(struct token *token, size_t buf_sz, char *buf);
+void token_clone(struct token *dest, struct token *src);
+void token_dealloc(struct token *token);
+
#endif