parser.h 184 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 #ifndef PARSER_H #define PARSER_H #include "ast.h" /** Parses the next statement from the provided TeenyBASIC file into an AST */ node_t *parse(FILE *stream); #endif /* PARSER_H */