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