📄 bzconfig.h
字号:
/* Select the compiler-specific config.h header file */#ifndef BZCONFIG_H#define BZCONFIG_H#if defined(__APPLE)/* IBM xlc compiler for Darwin */#include "apple/bzconfig.h"#elif defined(__ICC)/* Intel icc compiler */#include "intel/bzconfig.h"#elif defined(_MSC_VER)/* Microsoft VS.NET compiler */#include "ms/bzconfig.h"#elif defined(__IBM)/* IBM xlC compiler */#include "ibm/bzconfig.h"#elif defined(__DECCXX)/* Compaq cxx compiler */#include "compaq/bzconfig.h"#elif defined(__HP_aCC)/* HP aCC compiler */#include "hp/bzconfig.h"#elif defined(_SGI_COMPILER_VERSION)/* SGI CC compiler */#include "sgi/bzconfig.h"#elif defined(__GNUC__)/* GNU gcc compiler */#include "gnu/bzconfig.h"#elif defined(__PGI)/* PGI pgCC compiler */#include "pgi/bzconfig.h"#elif defined(__KCC)/* KAI KCC compiler */#include "kai/bzconfig.h"#elif defined(__FUJITSU)/* Fujitsu FCC compiler */#include "fujitsu/bzconfig.h"/* Add other compilers here */#endif#endif /* BZCONFIG_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -