summaryrefslogtreecommitdiff
path: root/ext/standard/php_math.h
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2010-12-03 10:10:08 +0000
committerAdam Harvey <aharvey@php.net>2010-12-03 10:10:08 +0000
commitd2263d482d58180377a3c5e848352dbf0421cb68 (patch)
tree3adb74722084a8c1f7c6350bfc7a467b52eaf4e4 /ext/standard/php_math.h
parent18ec6dae2ca8bc4f33a6079d5ef93cc50259b4cc (diff)
downloadphp-git-d2263d482d58180377a3c5e848352dbf0421cb68.tar.gz
Implement FR #53457 (number_format must support more than one character for
thousands separator).
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r--ext/standard/php_math.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h
index ca059af9fa..0b318c2d56 100644
--- a/ext/standard/php_math.h
+++ b/ext/standard/php_math.h
@@ -22,7 +22,8 @@
#ifndef PHP_MATH_H
#define PHP_MATH_H
-PHPAPI char *_php_math_number_format(double, int, char , char);
+PHPAPI char *_php_math_number_format(double, int, char, char);
+PHPAPI char *_php_math_number_format_ex(double, int, char *, size_t, char *, size_t);
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);