]> pd.if.org Git - pdclib/blobdiff - functions/math/cosh.c
Added template implementation files.
[pdclib] / functions / math / cosh.c
diff --git a/functions/math/cosh.c b/functions/math/cosh.c
new file mode 100644 (file)
index 0000000..4524820
--- /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 cosh( float x ) { /* TODO */ };
+long double cosh( long double x ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+double cosh( double x ) { /* TODO */ };
+float coshf( float x ) { /* TODO */ };
+long double coshl( long double x ) { /* TODO */ };