Starship/include/common.h

14 lines
280 B
C
Raw Normal View History

2023-10-06 16:23:21 +03:00
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
typedef signed long long s64;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long long u64;
#define true 1
#define false 0
#define bool s32
#define NULL 0