summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.h
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-12-26 16:44:20 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-12-26 16:44:20 +0000
commitff9d0fcc783c19d729ae475fe8baf76d94a003a9 (patch)
treed65d57b4975f5ebbb243ab538b871ca2f57d3c91 /Zend/zend_strtod.h
parent24124518ab1387dcc63e3ddeec2acdf43362e20f (diff)
downloadphp-git-ff9d0fcc783c19d729ae475fe8baf76d94a003a9.tar.gz
is_numeric_string() optimization
# Original Patch by Matt Wilmas
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 fc42991ba8..f2c15d27da 100644
--- a/Zend/zend_strtod.h
+++ b/Zend/zend_strtod.h
@@ -28,6 +28,7 @@ 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 int zend_startup_strtod(void);
ZEND_API int zend_shutdown_strtod(void);
END_EXTERN_C()