diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-21 23:53:32 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-21 23:53:32 +0330 |
commit | 30210fac06a6719a1f547a8cd1e24c159d7e7ee7 (patch) | |
tree | 90900f516383f26d8ffd74aed4b800ac62e685a9 /src/runner/runner.h | |
parent | 13156d99a29ba927f64d344cf4d385414bcf61e1 (diff) |
add a lot of goodies in types
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r-- | src/runner/runner.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h index c1a2382..02fd01e 100644 --- a/src/runner/runner.h +++ b/src/runner/runner.h @@ -24,6 +24,9 @@ void runnerVariablePush(RunnerVariables *variables,AstTreeVariable *variable); void runnerVariableSetValue(RunnerVariablePages *pages,AstTreeVariable *variable,AstTree *value); AstTree* runnerVariableGetValue(RunnerVariablePages *pages,AstTreeVariable *variable); +RunnerVariablePages initRootPages(); +void destroyRootPages(RunnerVariablePages pages); + bool runAstTree(AstTreeRoot *root); AstTree *runAstTreeFunction(AstTree *tree, AstTree **arguments, |