This commit is contained in:
r4
2021-12-21 01:18:22 +01:00
parent ab1887c28d
commit 21694f98ac
20 changed files with 1615 additions and 0 deletions

10
parse.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __PARSE_H__
#define __PARSE_H__
#include "ir.h"
#include "tok.h"
#include "util.h"
IRToks parse(TokList *toks);
#endif /* PARSE_H */