sandbox
Loading...
Searching...
No Matches
exit.hpp
1#ifndef LIBSBX_CORE_EXIT_HPP_
2#define LIBSBX_CORE_EXIT_HPP_
3
4#include <cinttypes>
5
6namespace sbx::core {
7
8struct exit {
9 inline static constexpr auto success = std::int32_t{0};
10 inline static constexpr auto failure = std::int32_t{1};
11}; // struct exit
12
13} // namespace sbx::core
14
15#endif // LIBSBX_CORE_EXIT_HPP_
Definition: exit.hpp:8