summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-07-27 00:14:02 +0000
committerPierre Joye <pajoye@php.net>2011-07-27 00:14:02 +0000
commit6e4435d628474d6fe395a742832cee730fbb5911 (patch)
treed54e735b3ccacaaf2dc263004c0df9c1b52cfdf2 /Zend/zend_strtod.h
parent57536d31ebdeeeeacd3bf2ef78302b97a79675bd (diff)
downloadphp-git-6e4435d628474d6fe395a742832cee730fbb5911.tar.gz
- add binary suport, FR #50638, as defined in RFC https://wiki.php.net/rfc/binnotation4ints, patch by Jonah Harris
Diffstat (limited to 'Zend/zend_strtod.h')
-rw-r--r--Zend/zend_strtod.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_strtod.h b/Zend/zend_strtod.h
index 67554d2be4..d847306825 100644
--- a/Zend/zend_strtod.h
+++ b/Zend/zend_strtod.h
@@ -30,6 +30,7 @@ ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sig
ZEND_API double zend_strtod(const char *s00, const char **se);
ZEND_API double zend_hex_strtod(const char *str, const char **endptr);
ZEND_API double zend_oct_strtod(const char *str, const char **endptr);
+ZEND_API double zend_bin_strtod(const char *str, const char **endptr);
ZEND_API int zend_startup_strtod(void);
ZEND_API int zend_shutdown_strtod(void);
END_EXTERN_C()