aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parse.h
blob: fe67b7587b778cbc9fb6feb4bb7109ef87fdad28 (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