lang/parse.h

11 lines
144 B
C
Raw Normal View History

2021-12-21 01:18:22 +01:00
#ifndef __PARSE_H__
#define __PARSE_H__
#include "ir.h"
#include "tok.h"
#include "util.h"
IRToks parse(TokList *toks);
#endif /* PARSE_H */