Partial parser implementation

This commit is contained in:
2025-04-01 17:16:21 +02:00
parent 6ca7bb3661
commit b70b6896bf
3 changed files with 151 additions and 1 deletions

9
src/parser/parser.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef INCLUDE_PARSER_PARSER_H_
#define INCLUDE_PARSER_PARSER_H_
#include "../tokenlist.h"
#include "util.h"
parse_result_t parse(tokenlist_entry_t *current);
#endif // INCLUDE_PARSER_PARSER_H_