blob: 764957523fd7afa71acb6bffd41e3440211b9c92 (
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_expr(TokenArray* pp_tokens);
#endif
|