2021-01-27 21:26:19 +00:00
|
|
|
#pragma once
|
2020-11-24 22:12:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-09-22 22:08:12 +00:00
|
|
|
void run_simple_command(const char *const command[], const char *error);
|
|
|
|
|
2022-05-29 22:44:27 +00:00
|
|
|
void pre_bootstrap(int argc, char *argv[]);
|
2021-06-17 21:32:24 +00:00
|
|
|
void bootstrap(int argc, char *argv[]);
|
2020-11-24 22:12:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2021-06-17 21:32:24 +00:00
|
|
|
#endif
|