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