Browse Source
- Fixed bug #30630: Added a BSD based strtod function that is
- Fixed bug #30630: Added a BSD based strtod function that is
locale-independent.PHP-5.1
8 changed files with 1801 additions and 21 deletions
-
2Zend/zend_execute_API.c
-
3Zend/zend_globals.h
-
7Zend/zend_ini.c
-
5Zend/zend_language_scanner.l
-
14Zend/zend_operators.c
-
3Zend/zend_operators.h
-
1760Zend/zend_strtod.c
-
28Zend/zend_strtod.h
1760
Zend/zend_strtod.c
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,28 @@ |
|||
/* |
|||
+----------------------------------------------------------------------+ |
|||
| Zend Engine | |
|||
+----------------------------------------------------------------------+ |
|||
| Copyright (c) 1998-2004 Zend Technologies Ltd. (http://www.zend.com) | |
|||
+----------------------------------------------------------------------+ |
|||
| This source file is subject to version 2.00 of the Zend license, | |
|||
| that is bundled with this package in the file LICENSE, and is | |
|||
| available through the world-wide-web at the following url: | |
|||
| http://www.zend.com/license/2_00.txt. | |
|||
| If you did not receive a copy of the Zend license and are unable to | |
|||
| obtain it through the world-wide-web, please send a note to | |
|||
| license@zend.com so we can mail you a copy immediately. | |
|||
+----------------------------------------------------------------------+ |
|||
| Authors: Derick Rethans <derick@php.net> | |
|||
+----------------------------------------------------------------------+ |
|||
*/ |
|||
|
|||
/* $Id$ */ |
|||
|
|||
/* This is a header file for the strtod implementation by David M. Gay which |
|||
* can be found in zend_strtod.c */ |
|||
#ifndef ZEND_STRTOD_H |
|||
#define ZEND_STRTOD_H |
|||
|
|||
double zend_strtod(const char *s00, char **se); |
|||
|
|||
#endif |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue