X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Ffmax.c;fp=functions%2Fmath%2Ffmax.c;h=a775ae12b188f70c7c3127b00ea33edb3d069bc9;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/math/fmax.c b/functions/math/fmax.c new file mode 100644 index 0000000..a775ae1 --- /dev/null +++ b/functions/math/fmax.c @@ -0,0 +1,19 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +float fmax( float x, float y ) { /* TODO */ }; +long double fmax( long double x, long double y ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double fmax( double x, double y ) { /* TODO */ }; +float fmaxf( float x, float y ) { /* TODO */ }; +long double fmaxl( long double x, long double y ) { /* TODO */ };