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
commit4d0f1bfeb437c8f4c5b3513f14225d5e0a48b756 (patch)
tree7f848582272f95b69ede1554eee06712d5bcf997 /Zend/zend_strtod.h
parent823d7a0534c3eaec7c8f6ff4889240df77baa58e (diff)
downloadphp-git-4d0f1bfeb437c8f4c5b3513f14225d5e0a48b756.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()