NANSection: libc math functions (3)Updated: 2002-08-10 |
NANSection: libc math functions (3)Updated: 2002-08-10 |
double nan(const char *tagp);
float nanf(const char *tagp);
long double nanl(const char *tagp);
The call nan(char-sequence) is equivalent to strtod (NAN(char-sequence),NULL) and similarly calls to nanf and nanl are equivalent to analogous calls to strtof and strtold.
The argument tagp is used in an unspecified manner. On IEEE 754 systems, there are many representations of NaN, and tagp selects one. On other systems it may do nothing.