X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcimag.c;fp=functions%2Fcomplex%2Fcimag.c;h=b601a4ceb4aac04b12295f18d88dabbb638646a0;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/complex/cimag.c b/functions/complex/cimag.c new file mode 100644 index 0000000..b601a4c --- /dev/null +++ b/functions/complex/cimag.c @@ -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 imag( double _Complex x ) { /* TODO */ }; +float imag( float _Complex x ) { /* TODO */ }; +long double imag( long double _Complex x ) { /* TODO */ }; +float cimag( float _Complex x ) { /* TODO */ }; +long double cimag( long double _Complex x ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double cimag( double _Complex x ) { /* TODO */ }; +float cimagf( float _Complex x ) { /* TODO */ }; +long double cimagl( long double _Complex x ) { /* TODO */ };