blob: bda2999e775f89a83cb5caca8ab75a2ffc11106e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef DUCC_PARSE_H
#define DUCC_PARSE_H
#include "ast.h"
#include "preprocess.h"
Program* parse(TokenArray* tokens);
bool pp_eval_constant_expression(TokenArray* pp_tokens);
#endif
|