oas/src/parser.h
omicron 71f1b0aa64
All checks were successful
Validate the build / validate-build (push) Successful in 26s
Add more grammar rules to the parser
2025-04-01 23:43:05 +02:00

12 lines
229 B
C

#ifndef INCLUDE_SRC_PARSER_H_
#define INCLUDE_SRC_PARSER_H_
#include "ast.h"
#include "error.h"
#include "parser_util.h"
#include "tokenlist.h"
parse_result_t parse(tokenlist_entry_t *current);
#endif // INCLUDE_SRC_PARSER_H_