X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fexp.c;fp=functions%2Fmath%2Fexp.c;h=19d35a58c4001d6153b759b107f5513fe135530e;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/math/exp.c b/functions/math/exp.c new file mode 100644 index 0000000..19d35a5 --- /dev/null +++ b/functions/math/exp.c @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +float exp( float x ) { /* TODO */ }; +long double exp( long double x ) { /* TODO */ }; + +float exp2( float x ) { /* TODO */ }; +long double exp2( long double x ) { /* TODO */ }; + +float expm1( float x ) { /* TODO */ }; +long double expm1( long double x ) { /* TODO */ }; + +float frexp( float x, int * exponent ) { /* TODO */ }; +long double frexp( long double x, int * exponent ) { /* TODO */ }; + +float ldexp( float x, int exponent ) { /* TODO */ }; +long double ldexp( long double x, int exponent ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double exp( double x ) { /* TODO */ }; +float expf( float x ) { /* TODO */ }; +long double expl( long double x ) { /* TODO */ }; + +double exp2( double x ) { /* TODO */ }; +float exp2f( float x ) { /* TODO */ }; +long double exp2l( long double x ) { /* TODO */ }; + +double expm1( double x ) { /* TODO */ }; +float expm1f( float x ) { /* TODO */ }; +long double expm1l( long double x ) { /* TODO */ }; + +double frexp( double x, int * exp ) { /* TODO */ }; +float frexpf( float x, int * exp ) { /* TODO */ }; +long double frexpl( long double x, int * exp ) { /* TODO */ }; + +double ldexp( double x, int exp ) { /* TODO */ }; +float ldexpf( float x, int exp ) { /* TODO */ }; +long double ldexpl( long double x, int exp ) { /* TODO */ }; \ No newline at end of file