define type definitions for common integer types

This commit is contained in:
2025-06-24 10:04:52 +02:00
parent 6a1b4104cf
commit a50b39307a

16
src/util/types.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <stdint.h>
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned long long ullong;
typedef signed long long llong;
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;