Files
mop3/ce/interp.h
kamkow1 9a9f118b82
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m7s
CE include stdbool.h, because it does not compile in debug mode
2026-03-03 21:54:32 +01:00

15 lines
246 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 interp_is_running (void);
void interp_shutdown (void);
#endif // _INTERP_H