fp.h

来自「gcc-2.95.3 Linux下最常用的C编译器」· C头文件 代码 · 共 29 行

H
29
字号
#define FMAX 40#define EXPMAXDIGS 8#define EXPMAX 99999999/* FMAX = max number of nonzero digits passed to atof() *//* EXPMAX = 10^EXPMAXDIGS - 1 = largest allowed exponent absolute value */#ifdef V10 /* Research Tenth-Edition Unix */#include "local.h"#endif/* MAXFRACDIGS and MAXINTDIGS are for wrt_F -- bounds (not necessarily   tight) on the maximum number of digits to the right and left of * the decimal point. */#ifdef VAX#define MAXFRACDIGS 56#define MAXINTDIGS 38#else#ifdef CRAY#define MAXFRACDIGS 9880#define MAXINTDIGS 9864#else/* values that suffice for IEEE double */#define MAXFRACDIGS 344#define MAXINTDIGS 308#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?