From 07cca00060de91569074f61172c9406f01eaefe7 Mon Sep 17 00:00:00 2001 From: A404M Date: Sun, 9 Feb 2025 08:06:41 +0330 Subject: fix memory leaks --- src/runner/runner.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/runner/runner.h') 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); -- cgit v1.2.3