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