diff options
author | Andrei Zmievski <andrei@php.net> | 2001-08-01 13:48:14 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2001-08-01 13:48:14 +0000 |
commit | fa6b5cdde71e8f6641756fbaa8b24e375451379b (patch) | |
tree | e1a59b5e254831b6dacfc96668612126de4b73a6 /ext/standard/php_math.h | |
parent | 88748bc7a82d9b2890184f5d0c31a5a4ec97aedf (diff) | |
download | php-git-fa6b5cdde71e8f6641756fbaa8b24e375451379b.tar.gz |
- Added a few new math functions from Jesus Castagnetto.
- Converted to Z_* macros.
@- Added a few new math functions. (Jesus)
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r-- | ext/standard/php_math.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index def6225ada..7ccc384630 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -55,6 +55,20 @@ PHP_FUNCTION(number_format); PHP_FUNCTION(deg2rad); PHP_FUNCTION(rad2deg); +PHP_FUNCTION(exp2); +PHP_FUNCTION(exp10); +PHP_FUNCTION(log2); +PHP_FUNCTION(cbrt); +PHP_FUNCTION(hypot); +PHP_FUNCTION(expm1); +PHP_FUNCTION(log1p); +PHP_FUNCTION(sinh); +PHP_FUNCTION(cosh); +PHP_FUNCTION(tanh); +PHP_FUNCTION(asinh); +PHP_FUNCTION(acosh); +PHP_FUNCTION(atanh); + #include <math.h> #ifndef M_E |