Files
mop3/ce/interp.h
kamkow1 2f186921d6
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 29s
init.cmd List devices, Start USB poller, libstring fix str_split_lines (), CE various fixes
2026-04-07 18:12:17 +02:00

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