Starship/include/common.h

15 lines
299 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;
2023-10-07 09:17:19 +03:00
typedef float f32;
2023-10-06 16:23:21 +03:00
#define true 1
#define false 0
#define bool s32
#define NULL 0