Files
mop3/ce/interp.h
kamkow1 c8fb575bdd
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s
Change formatting rules
2026-04-24 01:54:48 +02:00

25 lines
403 B
C

#ifndef _INTERP_H
#define _INTERP_H
#include "context.h"
#include "parser.h"
#include <list.h>
#include <stdbool.h>
#define POSVAR_MAX 64
struct posvar {
char buf[0x80];
};
void execute(struct ast_node* root, struct context* context, bool run_bg);
bool interp_is_running(void);
void interp_shutdown(void);
extern struct posvar posvars[POSVAR_MAX];
extern int posvar_count;
#endif // _INTERP_H