jack-compiler/parser/parser-structure.h

10 lines
169 B
C
Raw Normal View History

2020-12-22 11:18:54 -05:00
#ifndef PARSER_STRUCTURE_H
#define PARSER_STRUCTURE_H
#include "parser.h"
2020-12-31 18:24:27 -05:00
/* parser-structure
* Function for parsing a class. */
2020-12-29 19:27:48 -05:00
CLASS* parseclass(PARSER* p);
2020-12-22 11:18:54 -05:00
#endif