You've already forked rabbitizer
mirror of
https://github.com/encounter/rabbitizer.git
synced 2026-03-30 11:35:30 -07: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
|