evalexpr/src/parse/parse.h

9 lines
131 B
C

#ifndef PARSE_H
#define PARSE_H
#include "ast/ast.h"
struct ast_node *recursive_parse(const char *input);
#endif /* !PARSE_H */