类型定义

#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;

posted on 2021-02-23 15:59  码农er  阅读(110)  评论(0编辑  收藏  举报