Penguin
Annotated edit history of isnan(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 ISINF
2 !!!ISINF
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 CONFORMING TO
7 ----
8 !!NAME
9
10
11 isinf, isnan, finite - test for infinity or not-a-number (NaN)
12 !!SYNOPSIS
13
14
15 __#include
16 __ ''value''__);
17 int isnan(double__ ''value''__);
18 int finite(double__ ''value''__);
19 __
20 !!DESCRIPTION
21
22
23 The __isinf()__ function returns -1 if ''value''
24 represents negative infinity, 1 if ''value'' represents
25 positive infinity, and 0 otherwise.
26
27
28 The __isnan()__ function returns a non-zero value if
29 ''value'' is
30 ''
31
32
33 The __finite()__ function returns a non-zero value if
34 ''value'' is neither infinite nor a
35 ''
36 !!CONFORMING TO
37
38
39 BSD 4.3
40 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.