Types
This commit is contained in:
parent
74a39e1822
commit
608968668b
1 changed files with 10 additions and 1 deletions
11
types.h
11
types.h
|
@ -4,4 +4,13 @@ typedef unsigned char u8;
|
|||
typedef unsigned short u16;
|
||||
typedef unsigned int u32;
|
||||
typedef unsigned long u64;
|
||||
typedef u64 size_t;
|
||||
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef unsigned long uint64_t;
|
||||
typedef uint64_t size_t;
|
||||
|
||||
typedef uint64_t uintptr_t;
|
||||
|
||||
typedef u8 bool;
|
||||
|
|
Loading…
Add table
Reference in a new issue