--- embedaddon/php/Zend/zend_strtod.h 2012/02/21 23:47:52 1.1.1.1 +++ embedaddon/php/Zend/zend_strtod.h 2012/05/29 12:34:36 1.1.1.2 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: zend_strtod.h,v 1.1.1.1 2012/02/21 23:47:52 misho Exp $ */ +/* $Id: zend_strtod.h,v 1.1.1.2 2012/05/29 12:34:36 misho Exp $ */ /* This is a header file for the strtod implementation by David M. Gay which * can be found in zend_strtod.c */ @@ -27,9 +27,10 @@ BEGIN_EXTERN_C() ZEND_API void zend_freedtoa(char *s); ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve); -ZEND_API double zend_strtod(const char *s00, char **se); -ZEND_API double zend_hex_strtod(const char *str, char **endptr); -ZEND_API double zend_oct_strtod(const char *str, char **endptr); +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()