整型数类型定义

* 整型数类型定义*/
typedef signed char s8;
typedef signed int s16;
typedef signed long s32;
typedef unsigned char u8;
typedef unsigned int u16;
typedef unsigned long u32;

typedef signed char int8;
typedef signed int int16;
typedef signed long int32;
typedef unsigned char uint8;
typedef unsigned int uint16;
typedef unsigned long uint32;

  

原文地址:https://www.cnblogs.com/bytebee/p/8194593.html