diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-11-10 01:28:59 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-11-10 01:28:59 +0000 |
commit | 126be8ec7c13258a3361d2ebc2f3e609831213d2 (patch) | |
tree | 787458ff1480f8482f9da87c3df142630906b607 /ext/standard/php_math.h | |
parent | f06762b3618b1a41b8e42fa35d3676ad8093c35b (diff) | |
download | php-git-126be8ec7c13258a3361d2ebc2f3e609831213d2.tar.gz |
Added missing API declarations.
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r-- | ext/standard/php_math.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index 679ee2b624..e672b606a9 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -24,6 +24,9 @@ PHPAPI char *_php_math_number_format(double, int, char , char); PHPAPI char * _php_math_longtobase(zval *arg, int base); +PHPAPI long _php_math_basetolong(zval *arg, int base); +PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret); +PHPAPI char * _php_math_zvaltobase(zval *arg, int base TSRMLS_DC); PHP_FUNCTION(sin); PHP_FUNCTION(cos); |