stddef.h
1.0、参考
1.1、Since

C89

1.2、stddef.h的作用

定义一些常用的类型

1.3、stddef.h中定义的宏
#define NULL ((void*)0)
1.4、stddef.h中定义的类型
typedef long unsigned int size_t;

typedef int wchar_t;

typedef long int ptrdiff_t;

typedef long double max_align_t;