mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
14 lines
254 B
C
14 lines
254 B
C
#pragma once
|
|
|
|
#include "utils.h"
|
|
#include <stdbool.h>
|
|
|
|
// void run(Bytefile *bf, int argc, char **argv);
|
|
|
|
void run_init(size_t *stack);
|
|
|
|
void set_argc_argv(int argc, char **argv);
|
|
|
|
void run_main(Bytefile *bf, int argc, char **argv);
|
|
|
|
void run_cleanup();
|