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