aboutsummaryrefslogtreecommitdiff
path: root/interpreter/eval.h
blob: 9dd1ce0f1fd1ebbd39e86ee353783c6ef94bdd17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _H_FUSPEL_EVAL
#define _H_FUSPEL_EVAL

#include <stdio.h>

#include "syntax.h"

struct expression *eval_main(FILE *out, struct fuspel*
#ifdef FUSPEL_DEBUG
		, bool debug_graphs
#endif
		);

#endif