All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
14 lines
225 B
C
14 lines
225 B
C
#ifndef _INTERP_H
|
|
#define _INTERP_H
|
|
|
|
#include "context.h"
|
|
#include "parser.h"
|
|
|
|
void execute (struct ast_node* root, struct context* context);
|
|
|
|
bool interp_is_running (void);
|
|
|
|
void interp_shutdown (void);
|
|
|
|
#endif // _INTERP_H
|