diff options
author | Camil Staps | 2018-04-03 20:32:40 +0200 |
---|---|---|
committer | Camil Staps | 2018-04-03 20:32:40 +0200 |
commit | 27971f8bb01eff8037d3897f7b8d5cde99dce4f0 (patch) | |
tree | 08eeef55992f2afa6a5c95ae15a8eaf666c8b5a2 /interpreter/eval.h | |
parent | Add fix and scan_iterate examples (diff) |
Resolve #11: print end result as soon as it is in HNF
Diffstat (limited to 'interpreter/eval.h')
-rw-r--r-- | interpreter/eval.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interpreter/eval.h b/interpreter/eval.h index 121f3be..9dd1ce0 100644 --- a/interpreter/eval.h +++ b/interpreter/eval.h @@ -1,9 +1,11 @@ #ifndef _H_FUSPEL_EVAL #define _H_FUSPEL_EVAL +#include <stdio.h> + #include "syntax.h" -struct expression *eval_main(struct fuspel* +struct expression *eval_main(FILE *out, struct fuspel* #ifdef FUSPEL_DEBUG , bool debug_graphs #endif |