X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fgamma.c;fp=functions%2Fmath%2Fgamma.c;h=1f032db90d7abba7f3b413d1fa0b9245ef94cb75;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/math/gamma.c b/functions/math/gamma.c new file mode 100644 index 0000000..1f032db --- /dev/null +++ b/functions/math/gamma.c @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +float lgamma( float x ) { /* TODO */ }; +long double lgamma( long double x ) { /* TODO */ }; + +float tgamma( float x ) { /* TODO */ }; +long double tgamma( long double x ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double lgamma( double x ) { /* TODO */ }; +float lgammaf( float x ) { /* TODO */ }; +long double lgammal( long double x ) { /* TODO */ }; + +double tgamma( double x ) { /* TODO */ }; +float tgammaf( float x ) { /* TODO */ }; +long double tgammal( long double x ) { /* TODO */ };