]> pd.if.org Git - pdclib/blob - functions/math/log.c
Re-import from Subversion.
[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 double log( double x ) { /* TODO */ };
9 float logf( float x ) { /* TODO */ };
10 long double logl( long double x ) { /* TODO */ };
11
12 double log10( double x ) { /* TODO */ };
13 float log10f( float x ) { /* TODO */ };
14 long double log10l( long double x ) { /* TODO */ };
15
16 double log2( double x ) { /* TODO */ };
17 float log2f( float x ) { /* TODO */ };
18 long double log2l( long double x ) { /* TODO */ };
19
20 double logb( double x ) { /* TODO */ };
21 float logbf( float x ) { /* TODO */ };
22 long double logbl( long double x ) { /* TODO */ };
23
24 int ilogb( double x ) { /* TODO */ };
25 int ilogbf( float x ) { /* TODO */ };
26 int ilogbl( long double x ) { /* TODO */ };
27
28 double log1p( double x ) { /* TODO */ };
29 float log1pf( float x ) { /* TODO */ };
30 long double log1pl( long double x ) { /* TODO */ };