#ifndef EVAL_H #define EVAL_H #include "parser.h" typedef struct eval *eval_t; struct eval { // symtbl_t root; // symtbl_t *cur; }; // TODO: add options for the evaluation eval_t eval_create(); void eval_destroy(eval_t eval); int eval_ast(eval_t eval, parser_t ast); #endif