#ifndef _INTERP_H #define _INTERP_H #include "context.h" #include "parser.h" #include void execute (struct ast_node* root, struct context* context); bool interp_is_running (void); void interp_shutdown (void); #endif // _INTERP_H