📄 config.h.in
字号:
/* config.h.in. Generated automatically from configure.in by autoheader. *//* Define to empty if the keyword does not work. */#undef const/* Define as __inline if that's what the C compiler calls it. */#undef inline/* Define if you have the ANSI C header files. */#undef STDC_HEADERS/* Define if you can use gcc inline assembly. */#undef USE_GCC_ASM/* Define this to the default x86 target cpu (5 pentium, 6 ppro). */#undef COMPILE_CPU/* Define if you can use unix-style redirection. */#undef USE_UNIX_REDIRECTION/* The number of bytes in a int. */#undef SIZEOF_INT/* The number of bytes in a long. */#undef SIZEOF_LONG/* The number of bytes in a short. */#undef SIZEOF_SHORT/* Define if you have the getopt_long function. */#undef HAVE_GETOPT_LONG/* Define if you have the gettimeofday function. */#undef HAVE_GETTIMEOFDAY/* Define if you have the <getopt.h> header file. */#undef HAVE_GETOPT_H/* Define if you have the <stdbool.h> header file. */#undef HAVE_STDBOOL_H/* Define if you have the <sys/time.h> header file. */#undef HAVE_SYS_TIME_H/* Define if you have the <unistd.h> header file. */#undef HAVE_UNISTD_H/* Name of package */#undef PACKAGE/* Version number of package */#undef VERSIONtypedef unsigned char u8;#if SIZEOF_SHORT == 2typedef unsigned short u16;#elif SIZEOF_INT == 2typedef unsigned int u16;#else#warn unable to find type with 2 bytes size#endif#if SIZEOF_INT == 4typedef unsigned int u32;#elif SIZEOF_LONG == 4typedef unsigned long u32;#else#warn unable to find type with 4 bytes size#endif#if defined(__GNUC__) && defined(__i386__)#define REGPARAM __attribute__((regparm(1)))#else#define REGPARAM#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -