stdint.h

#ifndef STDINT_H_INCLUDED
#define STDINT_H_INCLUDED

typedef unsigned char uint8_t;
typedef unsigned int uint16_t;
typedef unsigned long uint32_t;
typedef signed char int8_t;
typedef signed int int16_t;
typedef signed long int32_t;

#endif // STDINT_H_INCLUDED







你可能感兴趣的:(stdint.h)