/
opt
/
alt
/
php54
/
usr
/
include
/
php
/
Zend
/
/opt/alt/php54/usr/include/php/Zend
mkdir
upload
Name
Size
Mode
Actions
zend.h
26391
0644
edit
dl
rm
zend_alloc.h
12014
0644
edit
dl
rm
zend_API.h
41573
0644
edit
dl
rm
zend_build.h
1627
0644
edit
dl
rm
zend_builtin_functions.h
1627
0644
edit
dl
rm
zend_closures.h
1901
0644
edit
dl
rm
zend_compile.h
33049
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
3070
0644
edit
dl
rm
zend_constants.h
5101
0644
edit
dl
rm
zend_dtrace.h
1993
0644
edit
dl
rm
zend_dynamic_array.h
1906
0644
edit
dl
rm
zend_errors.h
2159
0644
edit
dl
rm
zend_exceptions.h
3021
0644
edit
dl
rm
zend_execute.h
14934
0644
edit
dl
rm
zend_extensions.h
4608
0644
edit
dl
rm
zend_float.h
15657
0644
edit
dl
rm
zend_gc.h
7407
0644
edit
dl
rm
zend_globals.h
7338
0644
edit
dl
rm
zend_globals_macros.h
3226
0644
edit
dl
rm
zend_hash.h
17507
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
3158
0644
edit
dl
rm
zend_ini_scanner.h
1951
0644
edit
dl
rm
zend_ini_scanner_defs.h
254
0644
edit
dl
rm
zend_interfaces.h
4083
0644
edit
dl
rm
zend_istdiostream.h
1646
0644
edit
dl
rm
zend_iterators.h
3693
0644
edit
dl
rm
zend_language_parser.h
8579
0644
edit
dl
rm
zend_language_scanner.h
2573
0644
edit
dl
rm
zend_language_scanner_defs.h
326
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
2910
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
9419
0644
edit
dl
rm
zend_operators.h
29304
0644
edit
dl
rm
zend_ptr_stack.h
4203
0644
edit
dl
rm
zend_qsort.h
1462
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
2386
0644
edit
dl
rm
zend_strtod.h
1867
0644
edit
dl
rm
zend_ts_hash.h
7025
0644
edit
dl
rm
zend_types.h
2324
0644
edit
dl
rm
zend_variables.h
3850
0644
edit
dl
rm
zend_vm.h
1388
0644
edit
dl
rm
zend_vm_def.h
152516
0644
edit
dl
rm
zend_vm_execute.h
1239200
0644
edit
dl
rm
zend_vm_opcodes.h
8332
0644
edit
dl
rm
Edit:
/opt/alt/php54/usr/include/php/Zend/zend_string.h
(2386B)
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2014 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: Dmitry Stogov <dmitry@zend.com> | +----------------------------------------------------------------------+ */ /* $Id: $ */ #ifndef ZEND_STRING_H #define ZEND_STRING_H #include "zend.h" BEGIN_EXTERN_C() ZEND_API extern const char *(*zend_new_interned_string)(const char *str, int len, int free_src TSRMLS_DC); ZEND_API extern void (*zend_interned_strings_snapshot)(TSRMLS_D); ZEND_API extern void (*zend_interned_strings_restore)(TSRMLS_D); void zend_interned_strings_init(TSRMLS_D); void zend_interned_strings_dtor(TSRMLS_D); ZEND_API char *zend_string_concat3( const char *str1, size_t str1_len, const char *str2, size_t str2_len, const char *str3, size_t str3_len, size_t *new_len); END_EXTERN_C() #ifndef ZTS #define IS_INTERNED(s) \ (((s) >= CG(interned_strings_start)) && ((s) < CG(interned_strings_end))) #else #define IS_INTERNED(s) \ (0) #endif #define INTERNED_LEN(s) \ (((Bucket*)(((char*)(s))-sizeof(Bucket)))->nKeyLength) #define INTERNED_HASH(s) \ (((Bucket*)(((char*)(s))-sizeof(Bucket)))->h) #define str_efree(s) do { \ if (!IS_INTERNED(s)) { \ efree((char*)s); \ } \ } while (0) #define str_free(s) do { \ if (!IS_INTERNED(s)) { \ free((char*)s); \ } \ } while (0) #endif /* ZEND_STRING_H */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * indent-tabs-mode: t * End: */
Save
cmd:
run