/opt/alt/php52/usr/include/php/Zend
NameSizeModeActions
acconfig.h32910644editdlrm
FlexLexer.h56660644editdlrm
zend.h215790644editdlrm
zend_alloc.h117920644editdlrm
zend_API.h348470644editdlrm
zend_builtin_functions.h16880644editdlrm
zend_compile.h257140644editdlrm
zend_config.h1070644editdlrm
zend_config.nw.h25590644editdlrm
zend_config.w32.h31010644editdlrm
zend_constants.h42620644editdlrm
zend_dynamic_array.h19670644editdlrm
zend_errors.h21010644editdlrm
zend_exceptions.h28520644editdlrm
zend_execute.h83270644editdlrm
zend_extensions.h44230644editdlrm
zend_fast_cache.h41790644editdlrm
zend_globals.h68080644editdlrm
zend_globals_macros.h31970644editdlrm
zend_hash.h166360644editdlrm
zend_highlight.h25300644editdlrm
zend_indent.h15240644editdlrm
zend_ini.h97520644editdlrm
zend_ini_parser.h23710644editdlrm
zend_ini_scanner.h18320644editdlrm
zend_interfaces.h35490644editdlrm
zend_istdiostream.h17060644editdlrm
zend_iterators.h37500644editdlrm
zend_language_parser.h75630644editdlrm
zend_language_scanner.h23610644editdlrm
zend_list.h52160644editdlrm
zend_llist.h40300644editdlrm
zend_modules.h51660644editdlrm
zend_multibyte.h36980644editdlrm
zend_multiply.h21270644editdlrm
zend_objects.h22640644editdlrm
zend_objects_API.h41290644editdlrm
zend_object_handlers.h81980644editdlrm
zend_operators.h150080644editdlrm
zend_ptr_stack.h40120644editdlrm
zend_qsort.h15150644editdlrm
zend_stack.h23980644editdlrm
zend_static_allocator.h19210644editdlrm
zend_stream.h25430644editdlrm
zend_strtod.h18320644editdlrm
zend_ts_hash.h69320644editdlrm
zend_types.h20090644editdlrm
zend_variables.h41270644editdlrm
zend_vm.h14380644editdlrm
zend_vm_def.h1178880644editdlrm
zend_vm_execute.h9428530644editdlrm
zend_vm_opcodes.h65880644editdlrm
Edit: /opt/alt/php52/usr/include/php/Zend/zend_multibyte.h (3698B)
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2010 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 | | 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: Masaki Fujimoto | | Rui Hirokawa | +----------------------------------------------------------------------+ */ /* $Id: zend_multibyte.h 293155 2010-01-05 20:46:53Z sebastian $ */ #ifndef ZEND_MULTIBYTE_H #define ZEND_MULTIBYTE_H #ifdef ZEND_MULTIBYTE #define BOM_UTF32_BE "\x00\x00\xfe\xff" #define BOM_UTF32_LE "\xff\xfe\x00\x00" #define BOM_UTF16_BE "\xfe\xff" #define BOM_UTF16_LE "\xff\xfe" #define BOM_UTF8 "\xef\xbb\xbf" typedef int (*zend_encoding_filter)(char **str, int *str_length, const char *buf, int length TSRMLS_DC); typedef char* (*zend_encoding_detector)(const char *string, int length, char *list TSRMLS_DC); typedef int (*zend_encoding_converter)(char **to, int *to_length, const char *from, int from_length, const char *encoding_to, const char *encoding_from TSRMLS_DC); typedef int (*zend_encoding_oddlen)(const char *string, int length, const char *encoding TSRMLS_DC); typedef struct _zend_encoding { zend_encoding_filter input_filter; /* escape input filter */ zend_encoding_filter output_filter; /* escape output filter */ const char *name; /* encoding name */ const char *(*aliases)[]; /* encoding name aliases */ int compatible; /* flex compatible or not */ } zend_encoding; /* * zend multibyte APIs */ BEGIN_EXTERN_C() ZEND_API int zend_multibyte_set_script_encoding(char *encoding_list, int encoding_list_size TSRMLS_DC); ZEND_API int zend_multibyte_set_internal_encoding(char *encoding_name, int encoding_name_size TSRMLS_DC); ZEND_API int zend_multibyte_set_functions(zend_encoding_detector encoding_detector, zend_encoding_converter encoding_converter, zend_encoding_oddlen encoding_oddlen TSRMLS_DC); ZEND_API int zend_multibyte_set_filter(zend_encoding *onetime_encoding TSRMLS_DC); ZEND_API zend_encoding* zend_multibyte_fetch_encoding(char *encoding_name); ZEND_API int zend_multibyte_script_encoding_filter(char **to, int *to_length, const char *from, int from_length TSRMLS_DC); ZEND_API int zend_multibyte_internal_encoding_filter(char **to, int *to_length, const char *from, int from_length TSRMLS_DC); /* in zend_language_scanner.l */ ZEND_API void zend_multibyte_yyinput_again(zend_encoding_filter old_input_filter, zend_encoding *old_encoding TSRMLS_DC); ZEND_API int zend_multibyte_yyinput(zend_file_handle *file_handle, char *buf, size_t len TSRMLS_DC); ZEND_API int zend_multibyte_read_script(TSRMLS_D); END_EXTERN_C() #endif /* ZEND_MULTIBYTE */ #endif /* ZEND_MULTIBYTE_H */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: sw=4 ts=4 tw=78 * vim<600: sw=4 ts=4 tw=78 */