首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linuxC语言下的标准库里头包含的头文件

2013-12-26 
linuxC语言下的标准库里面包含的头文件assert.h float.h math.h stdarg.h stdlib.h ctype.h

linuxC语言下的标准库里面包含的头文件
<assert.h> <float.h> <math.h> <stdarg.h> <stdlib.h> 
<ctype.h> <limits.h> <setjmp.h> <stddef.h> <string.h> 
<errno.h> <locale.h> <signal.h> <stdio.h> <time.h> 
是不是C语言标准库只包含以上头文件啊?向unistd.h fcntl.h不是属于C语言标准库吗
[解决办法]

引用:
<assert.h> <float.h> <math.h> <stdarg.h> <stdlib.h> 
<ctype.h> <limits.h> <setjmp.h> <stddef.h> <string.h> 
<errno.h> <locale.h> <signal.h> <stdio.h> <time.h> 
是不是C语言标准库只包含以上头文件啊?向unistd.h fcntl.h不是属于C语言标准库吗

楼主列出的15个头文件就是C89的标准头文件;不过C99里增加了不少头文件和函数。
unistd.h和fcntl.h属于Unix系统的标准接口的头文件,就像Windows下有windows.h

热点排行