]> pd.if.org Git - pdclib/blob - functions/complex/creal.c
Added template implementation files.
[pdclib] / functions / complex / creal.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 // ----------------------------------------------------------------------------
9 // C++
10
11 double real( double _Complex x ) { /* TODO */ };
12 float real( float _Complex x ) { /* TODO */ };
13 long double real( long double _Complex x ) { /* TODO */ };
14 float creal( float _Complex x ) { /* TODO */ };
15 long double creal( long double _Complex x ) { /* TODO */ };
16
17 // ----------------------------------------------------------------------------
18 // Standard C
19
20 double creal( double _Complex x ) { /* TODO */ };
21 float crealf( float _Complex x ) { /* TODO */ };
22 long double creall( long double _Complex x ) { /* TODO */ };