X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fpow.c;fp=functions%2Fmath%2Fpow.c;h=ad4639ee33f30f5605ca4acfc763e22313e72da9;hb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;hp=0000000000000000000000000000000000000000;hpb=34b76b9d65477be9c7d35cd254f44be85b3786b4;p=pdclib diff --git a/functions/math/pow.c b/functions/math/pow.c new file mode 100644 index 0000000..ad4639e --- /dev/null +++ b/functions/math/pow.c @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +float pow( float x, float y ) { /* TODO */ }; +long double pow( long double x, long double y ) { /* TODO */ }; +double pow( double x, int y ) { /* TODO */ }; +float pow( float x, int y ) { /* TODO */ }; +long double pow( long double x, int y ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double pow( double x, double y ) { /* TODO */ }; +float powf( float x, float y ) { /* TODO */ }; +long double powl( long double x, long double y ) { /* TODO */ };