mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-28 04:23:36 +01:00
gint: provide short type definitions (i8, u8, etc.)
This commit is contained in:
parent
5626713f40
commit
5b16888d9d
1 changed files with 14 additions and 0 deletions
|
@ -21,6 +21,20 @@
|
|||
/* Fixed-width types for bit fields are quite meaningless */
|
||||
typedef unsigned int uint;
|
||||
|
||||
//---
|
||||
// Short types
|
||||
//---
|
||||
|
||||
typedef unsigned int uint;
|
||||
typedef uint8_t u8;
|
||||
typedef uint16_t u16;
|
||||
typedef uint32_t u32;
|
||||
typedef uint64_t u64;
|
||||
typedef int8_t i8;
|
||||
typedef int16_t i16;
|
||||
typedef int32_t i32;
|
||||
typedef int64_t i64;
|
||||
|
||||
//---
|
||||
// Structure elements
|
||||
//----
|
||||
|
|
Loading…
Reference in a new issue