| /* ints.h -- create integer types for 8, 16, 32, and 64 bits | |
| * Copyright (C) 2024 Mark Adler | |
| * For conditions of distribution and use, see the copyright notice in zlib.h | |
| * | |
| * There exist compilers with limits.h, but not stdint.h or inttypes.h. | |
| */ | |
| typedef signed char i8_t; | |
| typedef unsigned char ui8_t; | |
| typedef short i16_t; | |
| typedef unsigned short ui16_t; | |
| typedef int i16_t; | |
| typedef unsigned ui16_t; | |
| typedef int i32_t; | |
| typedef unsigned ui32_t; | |
| typedef long i32_t; | |
| typedef unsigned long ui32_t; | |
| typedef long i64_t; | |
| typedef unsigned long ui64_t; | |
| typedef long long i64_t; | |
| typedef unsigned long long ui64_t; | |
| typedef long long i64_t; | |
| typedef unsigned long long ui64_t; | |