]> pd.if.org Git - pdclib/blob - functions/math/islessgreater.c
Added template implementation files.
[pdclib] / functions / math / islessgreater.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 islessgreater( float x, float y ) { /* TODO */ };
12 bool islessgreater( double x, double y ) { /* TODO */ };
13 bool islessgreater( long double x, long double y ) { /* TODO */ };