/* Characteristics of floating types <float.h>12This file is part of the Public Domain C Library (PDCLib).3Permission is granted to use, modify, and / or redistribute at will.4*/56#ifndef _PDCLIB_FLOAT_H7#define _PDCLIB_FLOAT_H _PDCLIB_FLOAT_H8#include "_PDCLIB_float.h"910#define FLT_ROUNDS _PDCLIB_FLT_ROUNDS11#define FLT_EVAL_METHOD _PDCLIB_FLT_EVAL_METHOD12#define DECIMAL_DIG _PDCLIB_DECIMAL_DIG1314/* Radix of exponent representation */15#define FLT_RADIX _PDCLIB_FLT_RADIX1617/* Number of base-FLT_RADIX digits in the significand of a float */18#define FLT_MANT_DIG _PDCLIB_FLT_MANT_DIG1920/* Number of decimal digits of precision in a float */21#define FLT_DIG _PDCLIB_FLT_DIG2223/* Difference between 1.0 and the minimum float greater than 1.0 */24#define FLT_EPSILON _PDCLIB_FLT_EPSILON2526/* Minimum int x such that FLT_RADIX**(x-1) is a normalised float */27#define FLT_MIN_EXP _PDCLIB_FLT_MIN_EXP2829/* Minimum normalised float */30#define FLT_MIN _PDCLIB_FLT_MIN3132/* Minimum int x such that 10**x is a normalised float */33#define FLT_MIN_10_EXP _PDCLIB_FLT_MIN_10_EXP3435/* Maximum int x such that FLT_RADIX**(x-1) is a representable float */36#define FLT_MAX_EXP _PDCLIB_FLT_MAX_EXP3738/* Maximum float */39#define FLT_MAX _PDCLIB_FLT_MAX4041/* Maximum int x such that 10**x is a representable float */42#define FLT_MAX_10_EXP _PDCLIB_FLT_MAX_10_EXP434445/* Number of base-FLT_RADIX digits in the significand of a double */46#define DBL_MANT_DIG _PDCLIB_DBL_MANT_DIG4748/* Number of decimal digits of precision in a double */49#define DBL_DIG _PDCLIB_DBL_DIG5051/* Difference between 1.0 and the minimum double greater than 1.0 */52#define DBL_EPSILON _PDCLIB_DBL_EPSILON5354/* Minimum int x such that FLT_RADIX**(x-1) is a normalised double */55#define DBL_MIN_EXP _PDCLIB_DBL_MIN_EXP5657/* Minimum normalised double */58#define DBL_MIN _PDCLIB_DBL_MIN5960/* Minimum int x such that 10**x is a normalised double */61#define DBL_MIN_10_EXP _PDCLIB_DBL_MIN_10_EXP6263/* Maximum int x such that FLT_RADIX**(x-1) is a representable double */64#define DBL_MAX_EXP _PDCLIB_DBL_MAX_EXP6566/* Maximum double */67#define DBL_MAX _PDCLIB_DBL_MAX6869/* Maximum int x such that 10**x is a representable double */70#define DBL_MAX_10_EXP _PDCLIB_DBL_MAX_10_EXP717273/* Number of base-FLT_RADIX digits in the significand of a long double */74#define LDBL_MANT_DIG _PDCLIB_LDBL_MANT_DIG7576/* Number of decimal digits of precision in a long double */77#define LDBL_DIG _PDCLIB_LDBL_DIG7879/* Difference between 1.0 and the minimum long double greater than 1.0 */80#define LDBL_EPSILON _PDCLIB_LDBL_EPSILON8182/* Minimum int x such that FLT_RADIX**(x-1) is a normalised long double */83#define LDBL_MIN_EXP _PDCLIB_LDBL_MIN_EXP8485/* Minimum normalised long double */86#define LDBL_MIN _PDCLIB_LDBL_MIN8788/* Minimum int x such that 10**x is a normalised long double */89#define LDBL_MIN_10_EXP _PDCLIB_LDBL_MIN_10_EXP9091/* Maximum int x such that FLT_RADIX**(x-1) is a representable long double */92#define LDBL_MAX_EXP _PDCLIB_LDBL_MAX_EXP9394/* Maximum long double */95#define LDBL_MAX _PDCLIB_LDBL_MAX9697/* Maximum int x such that 10**x is a representable long double */98#define LDBL_MAX_10_EXP _PDCLIB_LDBL_MAX_10_EXP99100#endif101102103