Files
mop3/ce/interp.h
kamkow1 dc556d1524
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m15s
Build documentation / build-and-deploy (push) Successful in 2m53s
CE implement running commands in background
2026-03-29 19:55:24 +02:00

15 lines
259 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);
#endif // _INTERP_H