/
opt
/
alt
/
php71
/
usr
/
include
/
php
/
Zend
/
/opt/alt/php71/usr/include/php/Zend
mkdir
upload
Name
Size
Mode
Actions
zend.h
12376
0644
edit
dl
rm
zend_alloc.h
19226
0644
edit
dl
rm
zend_alloc_sizes.h
2629
0644
edit
dl
rm
zend_API.h
56815
0644
edit
dl
rm
zend_arena.h
3742
0644
edit
dl
rm
zend_ast.h
8313
0644
edit
dl
rm
zend_bitset.h
6872
0644
edit
dl
rm
zend_build.h
1626
0644
edit
dl
rm
zend_builtin_functions.h
1613
0644
edit
dl
rm
zend_closures.h
2082
0644
edit
dl
rm
zend_compile.h
33308
0644
edit
dl
rm
zend_config.h
107
0644
edit
dl
rm
zend_config.nw.h
2500
0644
edit
dl
rm
zend_config.w32.h
2782
0644
edit
dl
rm
zend_constants.h
6006
0644
edit
dl
rm
zend_dtrace.h
1951
0644
edit
dl
rm
zend_errors.h
2158
0644
edit
dl
rm
zend_exceptions.h
3942
0644
edit
dl
rm
zend_execute.h
14261
0644
edit
dl
rm
zend_extensions.h
5992
0644
edit
dl
rm
zend_float.h
15552
0644
edit
dl
rm
zend_gc.h
4889
0644
edit
dl
rm
zend_generators.h
7510
0644
edit
dl
rm
zend_globals.h
7316
0644
edit
dl
rm
zend_globals_macros.h
2775
0644
edit
dl
rm
zend_hash.h
32972
0644
edit
dl
rm
zend_highlight.h
2376
0644
edit
dl
rm
zend_inheritance.h
1954
0644
edit
dl
rm
zend_ini.h
9628
0644
edit
dl
rm
zend_ini_parser.h
2898
0644
edit
dl
rm
zend_ini_scanner.h
1981
0644
edit
dl
rm
zend_ini_scanner_defs.h
224
0644
edit
dl
rm
zend_interfaces.h
4321
0644
edit
dl
rm
zend_istdiostream.h
1645
0644
edit
dl
rm
zend_iterators.h
3585
0644
edit
dl
rm
zend_language_parser.h
8292
0644
edit
dl
rm
zend_language_scanner.h
2782
0644
edit
dl
rm
zend_language_scanner_defs.h
296
0644
edit
dl
rm
zend_list.h
3241
0644
edit
dl
rm
zend_llist.h
3898
0644
edit
dl
rm
zend_long.h
4407
0644
edit
dl
rm
zend_modules.h
4898
0644
edit
dl
rm
zend_multibyte.h
5002
0644
edit
dl
rm
zend_multiply.h
8469
0644
edit
dl
rm
zend_objects.h
1872
0644
edit
dl
rm
zend_objects_API.h
3621
0644
edit
dl
rm
zend_object_handlers.h
9390
0644
edit
dl
rm
zend_operators.h
29141
0644
edit
dl
rm
zend_portability.h
13720
0644
edit
dl
rm
zend_ptr_stack.h
4325
0644
edit
dl
rm
zend_range_check.h
3096
0644
edit
dl
rm
zend_signal.h
4098
0644
edit
dl
rm
zend_smart_str.h
4614
0644
edit
dl
rm
zend_smart_str_public.h
1279
0644
edit
dl
rm
zend_sort.h
1744
0644
edit
dl
rm
zend_stack.h
2468
0644
edit
dl
rm
zend_stream.h
3308
0644
edit
dl
rm
zend_string.h
14233
0644
edit
dl
rm
zend_strtod.h
1866
0644
edit
dl
rm
zend_strtod_int.h
3499
0644
edit
dl
rm
zend_ts_hash.h
6658
0644
edit
dl
rm
zend_types.h
32241
0644
edit
dl
rm
zend_type_info.h
3199
0644
edit
dl
rm
zend_variables.h
5464
0644
edit
dl
rm
zend_virtual_cwd.h
12766
0644
edit
dl
rm
zend_vm.h
1724
0644
edit
dl
rm
zend_vm_def.h
256215
0644
edit
dl
rm
zend_vm_execute.h
1989592
0644
edit
dl
rm
zend_vm_opcodes.h
12188
0644
edit
dl
rm
Edit:
/opt/alt/php71/usr/include/php/Zend/zend_language_scanner.h
(2782B)
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2018 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: Andi Gutmans <andi@zend.com> | | Zeev Suraski <zeev@zend.com> | +----------------------------------------------------------------------+ */ /* $Id$ */ #ifndef ZEND_SCANNER_H #define ZEND_SCANNER_H typedef struct _zend_lex_state { unsigned int yy_leng; unsigned char *yy_start; unsigned char *yy_text; unsigned char *yy_cursor; unsigned char *yy_marker; unsigned char *yy_limit; int yy_state; zend_stack state_stack; zend_ptr_stack heredoc_label_stack; zend_file_handle *in; uint lineno; zend_string *filename; /* original (unfiltered) script */ unsigned char *script_org; size_t script_org_size; /* filtered script */ unsigned char *script_filtered; size_t script_filtered_size; /* input/output filters */ zend_encoding_filter input_filter; zend_encoding_filter output_filter; const zend_encoding *script_encoding; /* hooks */ void (*on_event)(zend_php_scanner_event event, int token, int line, void *context); void *on_event_context; zend_ast *ast; zend_arena *ast_arena; } zend_lex_state; typedef struct _zend_heredoc_label { char *label; int length; } zend_heredoc_label; BEGIN_EXTERN_C() ZEND_API void zend_save_lexical_state(zend_lex_state *lex_state); ZEND_API void zend_restore_lexical_state(zend_lex_state *lex_state); ZEND_API int zend_prepare_string_for_scanning(zval *str, char *filename); ZEND_API void zend_multibyte_yyinput_again(zend_encoding_filter old_input_filter, const zend_encoding *old_encoding); ZEND_API int zend_multibyte_set_filter(const zend_encoding *onetime_encoding); ZEND_API void zend_lex_tstring(zval *zv); END_EXTERN_C() #endif /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * indent-tabs-mode: t * End: */
Save
cmd:
run