diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-09 08:06:41 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-09 08:06:41 +0330 |
commit | 07cca00060de91569074f61172c9406f01eaefe7 (patch) | |
tree | aa267e6a9adf216dabb523777d9ee379d1785d32 /src/runner/runner.h | |
parent | cf66b5e2db4424cf1947f47b95d7a02344eb315c (diff) |
fix memory leaks
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r-- | src/runner/runner.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h index ac36e84..758ed28 100644 --- a/src/runner/runner.h +++ b/src/runner/runner.h @@ -18,6 +18,8 @@ typedef struct RunnerVariablePages { size_t size; } RunnerVariablePages; +void runnerVariablesDelete(RunnerVariables *variables); + void runnerVariablePush(RunnerVariables *variables,AstTreeVariable *variable); void runnerVariableSetValue(RunnerVariablePages *pages,AstTreeVariable *variable,AstTree *value); AstTree* runnerVariableGetValue(RunnerVariablePages *pages,AstTreeVariable *variable); |