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