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