X7ROOT File Manager
Current Path:
/opt/alt/php85/usr/include/php/main
opt
/
alt
/
php85
/
usr
/
include
/
php
/
main
/
??
..
??
SAPI.h
(11.01 KB)
??
build-defs.h
(6.51 KB)
??
charclass.h
(653 B)
??
fastcgi.h
(4.78 KB)
??
fopen_wrappers.h
(2.14 KB)
??
http_status_codes.h
(2.83 KB)
??
main_arginfo.h
(6.63 KB)
??
php.h
(11.55 KB)
??
php_compat.h
(19.61 KB)
??
php_config.h
(63.67 KB)
??
php_content_types.h
(1.31 KB)
??
php_getopt.h
(1.63 KB)
??
php_glob.h
(5.9 KB)
??
php_globals.h
(3.93 KB)
??
php_ini.h
(3.57 KB)
??
php_ini_builder.h
(2.73 KB)
??
php_main.h
(3.57 KB)
??
php_memory_streams.h
(3.23 KB)
??
php_network.h
(10.67 KB)
??
php_odbc_utils.h
(1.27 KB)
??
php_open_temporary_file.h
(1.91 KB)
??
php_output.h
(9.02 KB)
??
php_reentrancy.h
(3.16 KB)
??
php_scandir.h
(1.67 KB)
??
php_streams.h
(31.63 KB)
??
php_syslog.h
(1.54 KB)
??
php_ticks.h
(1.35 KB)
??
php_variables.h
(2.06 KB)
??
php_version.h
(264 B)
??
rfc1867.h
(3.65 KB)
??
snprintf.h
(5.54 KB)
??
spprintf.h
(1.47 KB)
??
streams
Editing: charclass.h
/* * Public domain, 2008, Todd C. Miller <millert@openbsd.org> * * $OpenBSD: charclass.h,v 1.3 2020/10/13 04:42:28 guenther Exp $ */ /* * POSIX character class support for fnmatch() and glob(). */ static const struct cclass { const char *name; int (*isctype)(int); } cclasses[] = { { "alnum", isalnum }, { "alpha", isalpha }, { "blank", isblank }, { "cntrl", iscntrl }, { "digit", isdigit }, { "graph", isgraph }, { "lower", islower }, { "print", isprint }, { "punct", ispunct }, { "space", isspace }, { "upper", isupper }, { "xdigit", isxdigit }, { NULL, NULL } }; #define NCCLASSES (sizeof(cclasses) / sizeof(cclasses[0]) - 1)
Upload File
Create Folder