mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
24 lines
300 B
C++
24 lines
300 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
namespace cmkr {
|
|
namespace help {
|
|
|
|
const char *version() noexcept;
|
|
|
|
const char *message() noexcept;
|
|
|
|
} // namespace help
|
|
} // namespace cmkr
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *cmkr_help_version(void);
|
|
|
|
const char *cmkr_help_message(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|