test functions

This commit is contained in:
Arthur Barraux
2025-09-18 13:52:46 +02:00
parent 5818a8ecfc
commit ee2a34a3b1
21 changed files with 1252 additions and 1434 deletions
+5 -3
View File
@@ -2,9 +2,11 @@
#define LEXER_H_
#include "data.h"
#include <ctype.h>
#include <string.h>
token_t next_token(lexer_t *lexer);
void skip_whitespace(Lexer *lex);
Token peek_token(Lexer *lex);
Token next_token(Lexer *lex);
#endif