All checks were successful
Validate the build / validate-build (push) Successful in 26s
12 lines
229 B
C
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_
|