1//! @file macro.cpp
2//! @author ryftchen
3//! @brief The definitions (macro) in the utility module.
4//! @version 0.1.0
5//! @copyright Copyright (c) 2022-2025 ryftchen. All rights reserved.
6
7#include "macro.hpp"
8
9namespace utility::macro
10{
11//! @brief Function version number.
12//! @return version number (major.minor.patch)
13const char* version() noexcept
14{
15 static const char* const ver = "0.1.0";
16 return ver;
17}
18} // namespace utility::macro
19