mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
10 lines
174 B
C++
10 lines
174 B
C++
#ifndef BC_OS_COMMAND_LINE_HPP
|
|
#define BC_OS_COMMAND_LINE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
const char* OsGetCommandLine();
|
|
|
|
void OsSetCommandLine(int32_t argc, char** argv);
|
|
|
|
#endif
|