C中,有没有类似C++中的#include<bits/stdc++.h>,包含所有头文件的头文件。 10
1个回答
推荐于2017-11-27
展开全部
= =就算包含了C标准库的所有头文件也没多大意义,实际编程的时候免不了要用到<unistd.h>/<pthread.h>等等。此外把那么多标识符引入全局空间也增加编译器负担,且增加不小心与标准库组件重名的可能
觉得有必要包含所有C标准库头文件的话自己写一个就是了
#include <assert.h> //这个的行为依赖用户是否定义NDEBUG宏……
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#ifdef __STDC_VERSION__
#if __STDC_VERSION__ >= 199409L
#include <iso646.h>
#include <wchar.h>
#include <wctype.h>
#if __STDC_VERSION__ >= 199901L
#if ! __STDC_NO_COMPLEX__
#include <complex.h>
#endif
#include <fenv.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdint.h>
#include <tgmath.h>
#if __STDC_VERSION__ >= 201112L
#include <stdalign.h>
#if ! __STDC_NO_ATOMICS__
#include <stdatomic.h>
#endif
#include <stdnoreturn.h>
#if ! __STDC_NO_THREADS__
#include <threads.h>
#endif
#include <uchar.h>
#endif
#endif
#endif
#endif
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询