]> pd.if.org Git - pdclib/blobdiff - functions/complex/ctanh.c
Added template implementation files.
[pdclib] / functions / complex / ctanh.c
diff --git a/functions/complex/ctanh.c b/functions/complex/ctanh.c
new file mode 100644 (file)
index 0000000..344dd22
--- /dev/null
@@ -0,0 +1,20 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+// ----------------------------------------------------------------------------
+// C++
+
+double _Complex tanh( double _Complex x ) { /* TODO */ };
+float _Complex tanh( float _Complex x ) { /* TODO */ };
+long double _Complex tanh( long double _Complex x ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+double _Complex ctanh( double _Complex x ) { /* TODO */ };
+float _Complex ctanhf( float _Complex x ) { /* TODO */ };
+long double _Complex ctanhl( long double _Complex x ) { /* TODO */ };