mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 15:17:59 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
|
/* SPDX-FileCopyrightText: © 2023 Decompollaborate */
|
||
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef RABBITIZER_UTILS_HPP
|
||
|
#define RABBITIZER_UTILS_HPP
|
||
|
|
||
|
namespace rabbitizer {
|
||
|
enum class TrinaryValue {
|
||
|
NONE,
|
||
|
FALSE,
|
||
|
TRUE,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|