#ifndef PARSER_H #define PARSER_H #include "ast.h" /** * Parses the provided file stream into an abstract syntax tree * filled with the corresponding program. **/ node_t *parse(FILE *stream); #endif /* PARSER_H */