17 lines
290 B
C
17 lines
290 B
C
#ifndef _INTERP_H
|
|
#define _INTERP_H
|
|
|
|
#include "context.h"
|
|
#include "parser.h"
|
|
#include <stdbool.h>
|
|
|
|
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
|