Hackfut Security File Manager
Current Path:
/opt/alt/php44/usr/include/php/Zend
opt
/
alt
/
php44
/
usr
/
include
/
php
/
Zend
/
📁
..
📄
FlexLexer.h
(5.61 KB)
📄
acconfig.h
(1.61 KB)
📄
zend.h
(17.9 KB)
📄
zend_API.h
(20.67 KB)
📄
zend_alloc.h
(7.69 KB)
📄
zend_builtin_functions.h
(1.34 KB)
📄
zend_compile.h
(19.83 KB)
📄
zend_config.h
(107 B)
📄
zend_config.w32.h
(2.93 KB)
📄
zend_constants.h
(3.72 KB)
📄
zend_dynamic_array.h
(1.71 KB)
📄
zend_errors.h
(1.81 KB)
📄
zend_execute.h
(4.3 KB)
📄
zend_execute_globals.h
(2.14 KB)
📄
zend_execute_locks.h
(689 B)
📄
zend_extensions.h
(3.96 KB)
📄
zend_fast_cache.h
(3.98 KB)
📄
zend_globals.h
(6.46 KB)
📄
zend_globals_macros.h
(3.2 KB)
📄
zend_hash.h
(9.31 KB)
📄
zend_highlight.h
(2.31 KB)
📄
zend_indent.h
(1.3 KB)
📄
zend_ini.h
(9.18 KB)
📄
zend_ini_parser.h
(2.23 KB)
📄
zend_ini_scanner.h
(379 B)
📄
zend_istdiostream.h
(314 B)
📄
zend_language_parser.h
(6.83 KB)
📄
zend_language_scanner.h
(2.04 KB)
📄
zend_list.h
(4.44 KB)
📄
zend_llist.h
(3.8 KB)
📄
zend_modules.h
(3.14 KB)
📄
zend_multibyte.h
(3.43 KB)
📄
zend_multiply.h
(2.04 KB)
📄
zend_operators.h
(10.51 KB)
📄
zend_ptr_stack.h
(2.38 KB)
📄
zend_qsort.h
(1.32 KB)
📄
zend_stack.h
(2.15 KB)
📄
zend_static_allocator.h
(1.71 KB)
📄
zend_strtod.h
(1.45 KB)
📄
zend_types.h
(1.43 KB)
📄
zend_variables.h
(2.4 KB)
Editing: acconfig.h
#define ZEND_API #define ZEND_DLEXPORT @TOP@ #undef uint #undef ulong /* Define if you want to enable memory limit support */ #define MEMORY_LIMIT 0 @BOTTOM@ #ifdef HAVE_STDLIB_H # include <stdlib.h> #endif #ifdef HAVE_SYS_TYPES_H # include <sys/types.h> #endif #ifdef HAVE_SYS_SELECT_H #include <sys/select.h> #endif #ifdef HAVE_IEEEFP_H # include <ieeefp.h> #endif #ifdef HAVE_STRING_H # include <string.h> #else # include <strings.h> #endif int zend_sprintf(char *buffer, const char *format, ...); #include <math.h> #ifndef zend_isnan #ifdef HAVE_ISNAN #define zend_isnan(a) isnan(a) #elif defined(HAVE_FPCLASS) #define zend_isnan(a) ((fpclass(a) == FP_SNAN) || (fpclass(a) == FP_QNAN)) #else #define zend_isnan(a) 0 #endif #endif #ifdef HAVE_ISINF #define zend_isinf(a) isinf(a) #elif defined(INFINITY) /* Might not work, but is required by ISO C99 */ #define zend_isinf(a) (((a)==INFINITY)?1:0) #elif defined(HAVE_FPCLASS) #define zend_isinf(a) ((fpclass(a) == FP_PINF) || (fpclass(a) == FP_NINF)) #else #define zend_isinf(a) 0 #endif #ifdef HAVE_FINITE #define zend_finite(a) finite(a) #elif defined(HAVE_ISFINITE) || defined(isfinite) #define zend_finite(a) isfinite(a) #elif defined(fpclassify) #define zend_finite(a) ((fpclassify((a))!=FP_INFINITE&&fpclassify((a))!=FP_NAN)?1:0) #else #define zend_finite(a) (zend_isnan(a) ? 0 : zend_isinf(a) ? 0 : 1) #endif #ifdef NETWARE #ifdef USE_WINSOCK #/*This detection against winsock is of no use*/ undef HAVE_SOCKLEN_T #/*This detection against winsock is of no use*/ undef HAVE_SYS_SOCKET_H #endif #endif /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */
Upload File
Create Folder