Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.206
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
pcre802 /
usr /
share /
man /
man3 /
Delete
Unzip
Name
Size
Permission
Date
Action
pcre.3
12.35
KB
-rw-r--r--
2019-12-04 21:00
pcre_compile.3
2.91
KB
-rw-r--r--
2019-12-04 21:00
pcre_compile2.3
3
KB
-rw-r--r--
2019-12-04 21:00
pcre_config.3
1.98
KB
-rw-r--r--
2019-12-04 21:00
pcre_copy_named_substring.3
1.21
KB
-rw-r--r--
2019-12-04 21:00
pcre_copy_substring.3
1.08
KB
-rw-r--r--
2019-12-04 21:00
pcre_dfa_exec.3
3.85
KB
-rw-r--r--
2019-12-04 21:00
pcre_exec.3
3.21
KB
-rw-r--r--
2019-12-04 21:00
pcre_free_substring.3
580
B
-rw-r--r--
2019-12-04 21:00
pcre_free_substring_list.3
577
B
-rw-r--r--
2019-12-04 21:00
pcre_fullinfo.3
2.18
KB
-rw-r--r--
2019-12-04 21:00
pcre_get_named_substring.3
1.34
KB
-rw-r--r--
2019-12-04 21:00
pcre_get_stringnumber.3
987
B
-rw-r--r--
2019-12-04 21:00
pcre_get_stringtable_entries.3
1.12
KB
-rw-r--r--
2019-12-04 21:00
pcre_get_substring.3
1.24
KB
-rw-r--r--
2019-12-04 21:00
pcre_get_substring_list.3
1.25
KB
-rw-r--r--
2019-12-04 21:00
pcre_info.3
485
B
-rw-r--r--
2019-12-04 21:00
pcre_maketables.3
723
B
-rw-r--r--
2019-12-04 21:00
pcre_refcount.3
747
B
-rw-r--r--
2019-12-04 21:00
pcre_study.3
1.11
KB
-rw-r--r--
2019-12-04 21:00
pcre_version.3
470
B
-rw-r--r--
2019-12-04 21:00
pcreapi.3
87.88
KB
-rw-r--r--
2019-12-04 21:00
pcrebuild.3
12.57
KB
-rw-r--r--
2019-12-04 21:00
pcrecallout.3
7.48
KB
-rw-r--r--
2019-12-04 21:00
pcrecompat.3
6.8
KB
-rw-r--r--
2019-12-04 21:00
pcrecpp.3
12.26
KB
-rw-r--r--
2019-12-04 21:00
pcrematching.3
8.14
KB
-rw-r--r--
2019-12-04 21:00
pcrepartial.3
15.9
KB
-rw-r--r--
2019-12-04 21:00
pcrepattern.3
97.67
KB
-rw-r--r--
2019-12-04 21:00
pcreperform.3
6.54
KB
-rw-r--r--
2019-12-04 21:00
pcreposix.3
10.06
KB
-rw-r--r--
2019-12-04 21:00
pcreprecompile.3
5.33
KB
-rw-r--r--
2019-12-04 21:00
pcresample.3
2.71
KB
-rw-r--r--
2019-12-04 21:00
pcrestack.3
6.88
KB
-rw-r--r--
2019-12-04 21:00
pcresyntax.3
10.69
KB
-rw-r--r--
2019-12-04 21:00
Save
Rename
.TH PCRE_CONFIG 3 .SH NAME PCRE - Perl-compatible regular expressions .SH SYNOPSIS .rs .sp .B #include <pcre.h> .PP .SM .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); . .SH DESCRIPTION .rs .sp This function makes it possible for a client program to find out which optional features are available in the version of the PCRE library it is using. Its arguments are as follows: .sp \fIwhat\fR A code specifying what information is required \fIwhere\fR Points to where to put the data .sp The available codes are: .sp PCRE_CONFIG_LINK_SIZE Internal link size: 2, 3, or 4 PCRE_CONFIG_MATCH_LIMIT Internal resource limit PCRE_CONFIG_MATCH_LIMIT_RECURSION Internal recursion depth limit PCRE_CONFIG_NEWLINE Value of the default newline sequence: 13 (0x000d) for CR 10 (0x000a) for LF 3338 (0x0d0a) for CRLF -2 for ANYCRLF -1 for ANY PCRE_CONFIG_BSR Indicates what \eR matches by default: 0 all Unicode line endings 1 CR, LF, or CRLF only PCRE_CONFIG_POSIX_MALLOC_THRESHOLD Threshold of return slots, above which \fBmalloc()\fR is used by the POSIX API PCRE_CONFIG_STACKRECURSE Recursion implementation (1=stack 0=heap) PCRE_CONFIG_UTF8 Availability of UTF-8 support (1=yes 0=no) PCRE_CONFIG_UNICODE_PROPERTIES Availability of Unicode property support (1=yes 0=no) .sp The function yields 0 on success or PCRE_ERROR_BADOPTION otherwise. .P There is a complete description of the PCRE native API in the .\" HREF \fBpcreapi\fR .\" page and a description of the POSIX API in the .\" HREF \fBpcreposix\fR .\" page.