#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_