Added integer types and limits

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-12-27 23:18:23 +02:00
parent 9397ad895f
commit 1af5237371
2 changed files with 80 additions and 0 deletions

16
ev_types.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef EV_HEADERS_TYPES_H
#define EV_HEADERS_TYPES_H
// Signed integers
typedef signed char i8;
typedef short int i16;
typedef int i32;
typedef long long int i64;
// Unsigned integers
typedef unsigned char u8;
typedef unsigned short int u16;
typedef unsigned int u32;
typedef unsigned long long int u64;
#endif // EV_HEADERS_TYPES_H