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