X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fisfinite.c;fp=functions%2Fmath%2Fisfinite.c;h=d9f0a6c9b7e85b3d3d98a1e097589d4b603812d2;hb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;hp=0000000000000000000000000000000000000000;hpb=34b76b9d65477be9c7d35cd254f44be85b3786b4;p=pdclib diff --git a/functions/math/isfinite.c b/functions/math/isfinite.c new file mode 100644 index 0000000..d9f0a6c --- /dev/null +++ b/functions/math/isfinite.c @@ -0,0 +1,13 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +bool isfinite( float x ) { /* TODO */ }; +bool isfinite( double x ) { /* TODO */ }; +bool isfinite( long double x ) { /* TODO */ };