CE Implement positional arguments
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 36s
Build documentation / build-and-deploy (push) Successful in 1m23s

This commit is contained in:
2026-04-12 22:05:26 +02:00
parent 169fba6ee7
commit 9f216ffc49
4 changed files with 66 additions and 1 deletions

View File

@@ -30,6 +30,9 @@ static bool run = true;
bool interactive_mode;
struct posvar posvars[POSVAR_MAX];
int posvar_count = 0;
bool interp_is_running (void) { return run; }
void interp_shutdown (void) { run = false; }