/
opt
/
alt
/
php56
/
usr
/
include
/
php
/
Zend
/
/opt/alt/php56/usr/include/php/Zend
mkdir
upload
Name
Size
Mode
Actions
zend.h
26918
0644
edit
dl
rm
zend_alloc.h
12384
0644
edit
dl
rm
zend_API.h
42067
0644
edit
dl
rm
zend_ast.h
2389
0644
edit
dl
rm
zend_build.h
1627
0644
edit
dl
rm
zend_builtin_functions.h
1627
0644
edit
dl
rm
zend_closures.h
1859
0644
edit
dl
rm
zend_compile.h
35384
0644
edit
dl
rm
zend_config.h
107
0644
edit
dl
rm
zend_config.nw.h
2502
0644
edit
dl
rm
zend_config.w32.h
3271
0644
edit
dl
rm
zend_constants.h
6233
0644
edit
dl
rm
zend_dtrace.h
2048
0644
edit
dl
rm
zend_dynamic_array.h
1906
0644
edit
dl
rm
zend_errors.h
2159
0644
edit
dl
rm
zend_exceptions.h
3045
0644
edit
dl
rm
zend_execute.h
14477
0644
edit
dl
rm
zend_extensions.h
4617
0644
edit
dl
rm
zend_float.h
15875
0644
edit
dl
rm
zend_gc.h
7407
0644
edit
dl
rm
zend_generators.h
2666
0644
edit
dl
rm
zend_globals.h
7479
0644
edit
dl
rm
zend_globals_macros.h
3226
0644
edit
dl
rm
zend_hash.h
18195
0644
edit
dl
rm
zend_highlight.h
2419
0644
edit
dl
rm
zend_indent.h
1470
0644
edit
dl
rm
zend_ini.h
10003
0644
edit
dl
rm
zend_ini_parser.h
3298
0644
edit
dl
rm
zend_ini_scanner.h
2003
0644
edit
dl
rm
zend_ini_scanner_defs.h
225
0644
edit
dl
rm
zend_interfaces.h
4044
0644
edit
dl
rm
zend_istdiostream.h
1646
0644
edit
dl
rm
zend_iterators.h
3771
0644
edit
dl
rm
zend_language_parser.h
9085
0644
edit
dl
rm
zend_language_scanner.h
2696
0644
edit
dl
rm
zend_language_scanner_defs.h
297
0644
edit
dl
rm
zend_list.h
5218
0644
edit
dl
rm
zend_llist.h
3977
0644
edit
dl
rm
zend_modules.h
5094
0644
edit
dl
rm
zend_multibyte.h
5105
0644
edit
dl
rm
zend_multiply.h
3746
0644
edit
dl
rm
zend_objects.h
2215
0644
edit
dl
rm
zend_objects_API.h
4387
0644
edit
dl
rm
zend_object_handlers.h
9713
0644
edit
dl
rm
zend_operators.h
32479
0644
edit
dl
rm
zend_ptr_stack.h
4314
0644
edit
dl
rm
zend_qsort.h
1655
0644
edit
dl
rm
zend_signal.h
4084
0644
edit
dl
rm
zend_stack.h
2381
0644
edit
dl
rm
zend_static_allocator.h
1857
0644
edit
dl
rm
zend_stream.h
2950
0644
edit
dl
rm
zend_string.h
2909
0644
edit
dl
rm
zend_strtod.h
1867
0644
edit
dl
rm
zend_ts_hash.h
6941
0644
edit
dl
rm
zend_types.h
2358
0644
edit
dl
rm
zend_variables.h
3850
0644
edit
dl
rm
zend_virtual_cwd.h
12130
0644
edit
dl
rm
zend_vm.h
1422
0644
edit
dl
rm
zend_vm_def.h
166855
0644
edit
dl
rm
zend_vm_execute.h
1388429
0644
edit
dl
rm
zend_vm_opcodes.h
8807
0644
edit
dl
rm
Edit:
/opt/alt/php56/usr/include/php/Zend/zend_strtod.h
(1867B)
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2016 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 #include <zend.h> 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, 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() #endif
Save
cmd:
run