Files
mop3/ce/interp.h
kamkow1 2a891fcdd1
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
Split CE code into multiple files
2026-03-03 20:59:21 +01:00

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