]> pd.if.org Git - pdclib/blob - functions/math/log.c
Added template implementation files.
[pdclib] / functions / math / log.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 log( float x ) { /* TODO */ };
12 long double log( long double x ) { /* TODO */ };
13
14 float log10( float x ) { /* TODO */ };
15 long double log10( long double x ) { /* TODO */ };
16
17 float log2( float x ) { /* TODO */ };
18 long double log2( long double x ) { /* TODO */ };
19
20 float logb( float x ) { /* TODO */ };
21 long double logb( long double x ) { /* TODO */ };
22
23 int ilogb( float x ) { /* TODO */ };
24 int ilogb( long double x ) { /* TODO */ };
25
26 float log1p( float x ) { /* TODO */ };
27 long double log1p( long double x ) { /* TODO */ };
28
29 // ----------------------------------------------------------------------------
30 // Standard C
31
32 double log( double x ) { /* TODO */ };
33 float logf( float x ) { /* TODO */ };
34 long double logl( long double x ) { /* TODO */ };
35
36 double log10( double x ) { /* TODO */ };
37 float log10f( float x ) { /* TODO */ };
38 long double log10l( long double x ) { /* TODO */ };
39
40 double log2( double x ) { /* TODO */ };
41 float log2f( float x ) { /* TODO */ };
42 long double log2l( long double x ) { /* TODO */ };
43
44 double logb( double x ) { /* TODO */ };
45 float logbf( float x ) { /* TODO */ };
46 long double logbl( long double x ) { /* TODO */ };
47
48 int ilogb( double x ) { /* TODO */ };
49 int ilogbf( float x ) { /* TODO */ };
50 int ilogbl( long double x ) { /* TODO */ };
51
52 double log1p( double x ) { /* TODO */ };
53 float log1pf( float x ) { /* TODO */ };
54 long double log1pl( long double x ) { /* TODO */ };