C语言数据类型
typedef 定义类型别名
// 函数指针类型
typedef
int
(
*
PointerType
)
(
int
,
int
)
;
// 指针类型
typedef
CHAR
*
LPSTR
;