Cheetah Software  1.0
cTypes.h
Go to the documentation of this file.
1 
10 #ifndef PROJECT_CTYPES_H
11 #define PROJECT_CTYPES_H
12 
13 #include <stddef.h> // for size_t
14 #include <stdint.h>
15 
16 // short version of the stdint default integer types
17 typedef uint64_t u64;
18 typedef uint32_t u32;
19 typedef uint16_t u16;
20 typedef uint8_t u8;
21 typedef int8_t s8;
22 typedef int16_t s16;
23 typedef int32_t s32;
24 typedef int64_t s64;
25 
26 #endif // PROJECT_CTYPES_H
uint8_t u8
Definition: cTypes.h:20
int64_t s64
Definition: cTypes.h:24
uint32_t u32
Definition: cTypes.h:18
int8_t s8
Definition: cTypes.h:21
uint16_t u16
Definition: cTypes.h:19
int32_t s32
Definition: cTypes.h:23
uint64_t u64
Definition: cTypes.h:17
int16_t s16
Definition: cTypes.h:22