PATH:
opt
/
alt
/
php85
/
usr
/
include
/
php
/
main
/* * 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)
[-] php_streams.h
[open]
[-] php_config.h
[open]
[-] php_getopt.h
[open]
[+]
..
[-] main_arginfo.h
[open]
[-] http_status_codes.h
[open]
[-] SAPI.h
[open]
[-] snprintf.h
[open]
[-] php.h
[open]
[-] php_globals.h
[open]
[-] fastcgi.h
[open]
[-] php_memory_streams.h
[open]
[-] php_glob.h
[open]
[-] php_reentrancy.h
[open]
[-] php_output.h
[open]
[-] fopen_wrappers.h
[open]
[-] php_scandir.h
[open]
[-] php_variables.h
[open]
[-] rfc1867.h
[open]
[-] build-defs.h
[open]
[-] php_open_temporary_file.h
[open]
[-] php_version.h
[open]
[-] php_compat.h
[open]
[-] php_odbc_utils.h
[open]
[-] php_main.h
[open]
[-] php_content_types.h
[open]
[-] php_network.h
[open]
[-] charclass.h
[open]
[-] php_syslog.h
[open]
[-] php_ticks.h
[open]
[-] php_ini_builder.h
[open]
[+]
streams
[-] spprintf.h
[open]
[-] php_ini.h
[open]