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