From 85a67a25ac9757e694166b3c9e9e2c8cdeefc6da Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sat, 20 Sep 2025 23:25:29 -0400 Subject: Initial commit --- src/types.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/types.h (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h new file mode 100644 index 0000000..fcebfeb --- /dev/null +++ b/src/types.h @@ -0,0 +1,17 @@ +#ifndef PIT_TYPES_H +#define PIT_TYPES_H + +#include +#include + +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; + +#endif -- cgit v1.2.3