2022-08-26 03:46:24 +00:00
|
|
|
#ifndef _FLOAT_H_
|
|
|
|
#define _FLOAT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-10-31 06:54:08 +00:00
|
|
|
#define FLT_DIG 6
|
2022-09-29 23:55:38 +00:00
|
|
|
#define FLT_MAX 3.402823466e+38f
|
|
|
|
#define FLT_EPSILON 1.192092896e-07f
|
|
|
|
#define FLT_MIN 1.175494351e-38f
|
2022-08-26 03:46:24 +00:00
|
|
|
|
2024-10-31 06:54:08 +00:00
|
|
|
#define DBL_DIG 6
|
|
|
|
#define DBL_MIN 5.8774717e-39
|
|
|
|
#define DBL_MAX (* (double *) __double_max)
|
2022-10-05 00:16:03 +00:00
|
|
|
#define DBL_EPSILON 1.1920929e-07
|
|
|
|
|
2024-10-31 06:54:08 +00:00
|
|
|
#define DBL_MANT_DIG 53
|
|
|
|
|
2022-08-26 03:46:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|