mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
20 lines
257 B
C++
20 lines
257 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
namespace cmkr {
|
|
namespace args {
|
|
|
|
const char *handle_args(int argc, char **argv);
|
|
|
|
} // namespace args
|
|
} // namespace cmkr
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *cmkr_args_handle_args(int, char **);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|