e54c96f187
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
16 lines
443 B
C
16 lines
443 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: math.h
|
|
// Purpose: interface of global functions
|
|
// Author: wxWidgets team
|
|
// RCS-ID: $Id$
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
Returns a non-zero value if @a x is neither infinite nor NaN (not a number),
|
|
returns 0 otherwise.
|
|
*/
|
|
int wxFinite(double x);
|
|
|
|
|