Files
mop3/ce/interp.h
kamkow1 288a4b4e83
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 27s
Implement storage device partition rescan (XDRV_PARTITION_RESCAN), Self-hosted installation WIP
2026-04-16 00:09:46 +02:00

25 lines
406 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