]> pd.if.org Git - pdclib/blob - functions/math/scalbn.c
Added template implementation files.
[pdclib] / functions / math / scalbn.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 scalbn( float x, int ex ) { /* TODO */ };
12 long double scalbn( long double x, int ex ) { /* TODO */ };
13
14 float scalbln( float x, long ex ) { /* TODO */ };
15 long double scalbln( long double x, long ex ) { /* TODO */ };
16
17 // ----------------------------------------------------------------------------
18 // Standard C
19
20 double scalbn( double x, int ex ) { /* TODO */ };
21 float scalbnf( float x, int ex ) { /* TODO */ };
22 long double scalbnl( long double x, int ex ) { /* TODO */ };
23
24 double scalbln( double x, long ex ) { /* TODO */ };
25 float scalblnf( float x, long ex ) { /* TODO */ };
26 long double scalblnl( long double x, long ex ) { /* TODO */ };