X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fcomplex%2Fcatanh.c;fp=functions%2Fcomplex%2Fcatanh.c;h=692a996790470ac3a90ae299231cbbf4dcdf1760;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/complex/catanh.c b/functions/complex/catanh.c new file mode 100644 index 0000000..692a996 --- /dev/null +++ b/functions/complex/catanh.c @@ -0,0 +1,20 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +double _Complex atanh( double _Complex x ) { /* TODO */ }; +float _Complex atanh( float _Complex x ) { /* TODO */ }; +long double _Complex atanh( long double _Complex x ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double _Complex catanh( double _Complex x ) { /* TODO */ }; +float _Complex catanhf( float _Complex x ) { /* TODO */ }; +long double _Complex catanhl( long double _Complex x ) { /* TODO */ };