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