diff options
| author | LLLL Colonq <llll@colonq> | 2025-09-20 23:25:29 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-09-20 23:25:29 -0400 |
| commit | 85a67a25ac9757e694166b3c9e9e2c8cdeefc6da (patch) | |
| tree | a381993c6f0d85aec3c3ead4ed7fa66583338ccb /src/types.h | |
Initial commit
Diffstat (limited to 'src/types.h')
| -rw-r--r-- | src/types.h | 17 |
1 files changed, 17 insertions, 0 deletions
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 <stdbool.h> +#include <stdint.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; + +#endif |
