lang/parse.h

11 lines
144 B
C

#ifndef __PARSE_H__
#define __PARSE_H__
#include "ir.h"
#include "tok.h"
#include "util.h"
IRToks parse(TokList *toks);
#endif /* PARSE_H */