]> pd.if.org Git - pdclib/blobdiff - functions/math/mod.c
Added template implementation files.
[pdclib] / functions / math / mod.c
diff --git a/functions/math/mod.c b/functions/math/mod.c
new file mode 100644 (file)
index 0000000..9e002cf
--- /dev/null
@@ -0,0 +1,26 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+// ----------------------------------------------------------------------------
+// C++
+
+float fmod( float x, float y ) { /* TODO */ };
+long double fmod( long double x, long double y ) { /* TODO */ };
+
+float modf( float x, float * integer ) { /* TODO */ };
+long double modf( long double x, long double * integer ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+double fmod( double x, double y ) { /* TODO */ };
+float fmodf( float x, float y ) { /* TODO */ };
+long double fmodl( long double x, long double y ) { /* TODO */ };
+
+double modf( double x, double * integer ) { /* TODO */ };
+float modff( float x, float * integer ) { /* TODO */ };
+long double modfl( long double x, long double * integer ) { /* TODO */ };