]> pd.if.org Git - pdclib/blob - functions/math/exp.c
Added template implementation files.
[pdclib] / functions / math / exp.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 float exp( float x ) { /* TODO */ };
12 long double exp( long double x ) { /* TODO */ };
13
14 float exp2( float x ) { /* TODO */ };
15 long double exp2( long double x ) { /* TODO */ };
16
17 float expm1( float x ) { /* TODO */ };
18 long double expm1( long double x ) { /* TODO */ };
19
20 float frexp( float x, int * exponent ) { /* TODO */ };
21 long double frexp( long double x, int * exponent ) { /* TODO */ };
22
23 float ldexp( float x, int exponent ) { /* TODO */ };
24 long double ldexp( long double x, int exponent ) { /* TODO */ };
25
26 // ----------------------------------------------------------------------------
27 // Standard C
28
29 double exp( double x ) { /* TODO */ };
30 float expf( float x ) { /* TODO */ };
31 long double expl( long double x ) { /* TODO */ };
32
33 double exp2( double x ) { /* TODO */ };
34 float exp2f( float x ) { /* TODO */ };
35 long double exp2l( long double x ) { /* TODO */ };
36
37 double expm1( double x ) { /* TODO */ };
38 float expm1f( float x ) { /* TODO */ };
39 long double expm1l( long double x ) { /* TODO */ };
40
41 double frexp( double x, int * exp ) { /* TODO */ };
42 float frexpf( float x, int * exp ) { /* TODO */ };
43 long double frexpl( long double x, int * exp ) { /* TODO */ };
44
45 double ldexp( double x, int exp ) { /* TODO */ };
46 float ldexpf( float x, int exp ) { /* TODO */ };
47 long double ldexpl( long double x, int exp ) { /* TODO */ };