Updating submodules
[hiphop-php.git] / hphp / zend / zend-strtod.h
blobe605fba4d08271d6cb8d782e931175d27dd7389c
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-present Facebook, Inc. (http://www.facebook.com) |
6 | Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
7 +----------------------------------------------------------------------+
8 | This source file is subject to version 2.00 of the Zend license, |
9 | that is bundled with this package in the file LICENSE, and is |
10 | available through the world-wide-web at the following url: |
11 | http://www.zend.com/license/2_00.txt. |
12 | If you did not receive a copy of the Zend license and are unable to |
13 | obtain it through the world-wide-web, please send a note to |
14 | license@zend.com so we can mail you a copy immediately. |
15 +----------------------------------------------------------------------+
18 #ifndef incl_HPHP_ZEND_ZEND_STRTOD_H_
19 #define incl_HPHP_ZEND_ZEND_STRTOD_H_
21 namespace HPHP {
22 ///////////////////////////////////////////////////////////////////////////////
24 void zend_freedtoa(char *s);
25 char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign,
26 char **rve);
27 double zend_strtod(const char *s00, const char **se);
28 double zend_hex_strtod(const char *str, const char **endptr);
29 double zend_oct_strtod(const char *str, const char **endptr);
30 double zend_bin_strtod(const char *str, const char **endptr);
32 void zend_get_bigint_data();
34 ///////////////////////////////////////////////////////////////////////////////
37 #endif // incl_HPHP_ZEND_ZEND_STRTOD_H_