好多C语言库函数参考还是用的TC的库函数参考,因此特地把现在C语言(C99)标准库函数的24个头文件列表如下:
assert.h inttypes.h(C99) signal.h stdlib.h
complex.h(C99) iso646.h(C95) stdarg.h string.h
ctype.h limits.h stdbool.h tgmath.h(C99)
errno.h locale.h stddef.h time.h
fenv.h(C99) math.h stdint.h(C99) wchar.h(C95)
float.h setjmp.h stdio.h wctype.h(C95)
其中C99表示该头文件是在C99标准中新增的,C95表示对原有C89进行一次增补后的C89标准,又称C89增补1。
C89中的标准头文件:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
在95年
的修正版中添加标准头文件:
1.
2.
3.
C99中增加了六个标准头文件:
1.
2.
3.
4.
5.
6.
以上是C语言的标准头文件,共24个。而各个平台各自又对C库函数进行的各种扩充,就浩如烟海了。如POSIX C、GNU C等。
阅读(2754) | 评论(0) | 转发(0) |