mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-11 17:33:30 +00:00
13 lines
221 B
C
13 lines
221 B
C
#pragma once
|
|
|
|
#include "parser.h"
|
|
|
|
void run_init(size_t *stack);
|
|
|
|
void run_init_mod_rec(uint mod_id);
|
|
|
|
void run_prepare_exec(int argc, char **argv);
|
|
|
|
void run_mod(uint mod_id, int argc, char **argv);
|
|
|
|
void run_cleanup();
|