/* * defs.h * * Created on: 13.01.2018 * Author: Superleo1810 */ #ifndef DEFS_H_ #define DEFS_H_ #ifndef NULL #define NULL 0 #endif #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif typedef unsigned char u8; typedef signed char s8; typedef unsigned short int u16; typedef signed short int s16; typedef unsigned long int u32; typedef signed long int s32; typedef unsigned long long u64; typedef signed long long s64; typedef u8 bool; #endif /* DEFS_H_ */