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