make requirements section of readme more retard-proof
[mkp224o.git] / types.h
blob10c6c706901a0858a7ac752b2073b4215994b86e
2 #define U8_MAX UINT8_MAX
3 #define I8_MIN INT8_MIN
4 #define I8_MAX INT8_MAX
5 #define U16_MAX UINT16_MAX
6 #define I16_MIN INT16_MIN
7 #define I16_MAX INT16_MAX
8 #define U32_MAX UINT32_MAX
9 #define I32_MIN INT32_MIN
10 #define I32_MAX INT32_MAX
11 #define U64_MAX UINT64_MAX
12 #define I64_MIN INT64_MIN
13 #define I64_MAX INT64_MAX
15 typedef uint8_t u8;
16 typedef int8_t i8;
17 typedef uint16_t u16;
18 typedef int16_t i16;
19 typedef uint32_t u32;
20 typedef int32_t i32;
21 typedef uint64_t u64;
22 typedef int64_t i64;