]> pd.if.org Git - pdclib/blob - functions/complex/cimag.c
Added template implementation files.
[pdclib] / functions / complex / cimag.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 imag( double _Complex x ) { /* TODO */ };
12 float imag( float _Complex x ) { /* TODO */ };
13 long double imag( long double _Complex x ) { /* TODO */ };
14 float cimag( float _Complex x ) { /* TODO */ };
15 long double cimag( long double _Complex x ) { /* TODO */ };
16
17 // ----------------------------------------------------------------------------
18 // Standard C
19
20 double cimag( double _Complex x ) { /* TODO */ };
21 float cimagf( float _Complex x ) { /* TODO */ };
22 long double cimagl( long double _Complex x ) { /* TODO */ };