isfinite()

Tests if a value is a finite number.

 #include <math.h>
 int isfinite(x);
Parameter

x

A float, double, or long double value to test.

Remarks

The function returns true if the value tested is finite. Otherwise it returns false. A finite number is not infinite and is not NaN.

This facility may not be available on configurations of the EWL that run on platforms that do not have floating-point math capabilities.