* 整型数类型定义*/ 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;