#include <inttypes.h>
typedef int8_t int8; //<有符号 1字节
typedef uint8_t uint8; //无符号 1字节
typedef uint8_t byte; //< 无符号 1字节
typedef int16_t int16;//有符号 2字节
typedef uint16_t uint16 ;//无符号 2字节
typedef int32_t int32;
typedef uint32_t uint32;
typedef int64_t int64;
typedef uint64_t uint64;