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