stdint.h (384B)
1 #ifndef __STDINT_H__ 2 #define __STDINT_H__ 3 4 typedef signed char int8_t; 5 typedef unsigned char uint8_t; 6 typedef signed short int int16_t; 7 typedef unsigned short int uint16_t; 8 typedef signed long int int32_t; 9 typedef unsigned long int uint32_t; 10 typedef signed long long int int64_t; 11 typedef unsigned long long int uint64_t; 12 typedef int32_t intptr_t; 13 typedef uint32_t uintptr_t; 14 15 #endif 16