diff options
| author | WormHeamer | 2025-10-28 02:01:40 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-10-28 02:01:40 -0400 |
| commit | 2bbb581678fb4871a4211fc96d12fa69c110b693 (patch) | |
| tree | 4f895f2e2cda89a7201a9e4c702331d023d8ed58 | |
| parent | 934b4b2ab0a0970bf22083e1b38722e39f67d642 (diff) | |
add i8, u8
| -rw-r--r-- | typ.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,9 +4,12 @@ #include <stdint.h> #include <stddef.h> +typedef int8_t i8; typedef int16_t i16; typedef int32_t i32; typedef int64_t i64; + +typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; typedef uint64_t u64; |
