]> pd.if.org Git - pdclib/blob - functions/math/isgreaterequal.c
d16cea7818242fefd48a63a52f1b347c4afcb912
[pdclib] / functions / math / isgreaterequal.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 // ----------------------------------------------------------------------------
9 // C++
10
11 bool isgreaterequal( float x, float y ) { /* TODO */ };
12 bool isgreaterequal( double x, double y ) { /* TODO */ };
13 bool isgreaterequal( long double x, long double y ) { /* TODO */ };