Tests if a value is a finite number.
#include <math.h> int isfinite(x);
x
A float, double, or long double value to test.
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.