1#include <cstddef>
2#include <cstdint>
3
4struct DECOMP_SLICE
5{
6 uint16_t offset : 13;
7 uint16_t length : 3;
8};
9
10static constexpr size_t NUM_DECOMP_LENGTHS = 8;
11static constexpr size_t NUM_DECOMPS = 10093;
12
13extern const uint8_t decomp_lengths[NUM_DECOMP_LENGTHS];
14extern const int32_t decomp_chars[NUM_DECOMPS];
15extern const struct DECOMP_SLICE decomp_slices[NUM_DECOMPS];
16extern const int32_t decomp_data[];
17