00001 00002 #ifndef __basic_h__ 00003 #define __basic_h__ 00004 00005 #include <stdint.h> 00006 00007 typedef int8_t int8; 00008 typedef int16_t int16; 00009 typedef int32_t int32; 00010 typedef int64_t int64; 00011 00012 typedef uint8_t uint8; 00013 typedef uint16_t uint16; 00014 typedef uint32_t uint32; 00015 typedef uint64_t uint64; 00016 00017 #ifndef INT32_MAX 00018 #define INT32_MAX (2147483647) 00019 #endif 00020 00021 #endif // __basic_h__