15 lines
201 B
C
15 lines
201 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void set_and_print_env(const char *name, char *value);
|
|
|
|
void pre_bootstrap();
|
|
void bootstrap(int argc, char *argv[]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|