forked from cosmonaut/wraith-lang
9 lines
165 B
C
9 lines
165 B
C
|
#ifndef WRAITH_PARSER_H
|
||
|
#define WRAITH_PARSER_H
|
||
|
|
||
|
#include "ast.h"
|
||
|
|
||
|
int Parse(char *inputFilename, Node **pNode, uint8_t parseVerbose);
|
||
|
|
||
|
#endif /* WRAITH_PARSER_H */
|