]> pd.if.org Git - pdclib/blobdiff - functions/math/islessgreater.c
Added template implementation files.
[pdclib] / functions / math / islessgreater.c
diff --git a/functions/math/islessgreater.c b/functions/math/islessgreater.c
new file mode 100644 (file)
index 0000000..6340fe6
--- /dev/null
@@ -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 islessgreater( float x, float y ) { /* TODO */ };
+bool islessgreater( double x, double y ) { /* TODO */ };
+bool islessgreater( long double x, long double y ) { /* TODO */ };