mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
build
conf
debian
docs
dtd
freeswitch.xcodeproj
htdocs
libs
apr
apr-iconv-1.1.1
apr-util
codec
curl
iax
iksemel
js
libdingaling
libedit
libresample
libsndfile
libteletone
pcre
doc
html
Tech.Notes
pcre.3
pcre.txt
pcre_compile.3
pcre_compile2.3
pcre_config.3
pcre_copy_named_substring.3
pcre_copy_substring.3
pcre_dfa_exec.3
pcre_exec.3
pcre_free_substring.3
pcre_free_substring_list.3
pcre_fullinfo.3
pcre_get_named_substring.3
pcre_get_stringnumber.3
pcre_get_stringtable_entries.3
pcre_get_substring.3
pcre_get_substring_list.3
pcre_info.3
pcre_maketables.3
pcre_refcount.3
pcre_study.3
pcre_version.3
pcreapi.3
pcrebuild.3
pcrecallout.3
pcrecompat.3
pcrecpp.3
pcregrep.1
pcregrep.txt
pcrematching.3
pcrepartial.3
pcrepattern.3
pcreperform.3
pcreposix.3
pcreprecompile.3
pcresample.3
pcrestack.3
pcretest.1
pcretest.txt
perltest.txt
testdata
.update
AUTHORS
COPYING
ChangeLog
INSTALL
LICENCE
Makefile.in
NEWS
NON-UNIX-USE
README
RunGrepTest.in
RunTest.in
config.h.in
configure.ac
configure.gnu
dftables.c
install-sh
libpcre.def
libpcre.pc.in
libpcreposix.def
makevp.bat
mkinstalldirs
pcre-config.in
pcre.def
pcre.h
pcre_compile.c
pcre_config.c
pcre_dfa_exec.c
pcre_exec.c
pcre_fullinfo.c
pcre_get.c
pcre_globals.c
pcre_info.c
pcre_internal.h
pcre_maketables.c
pcre_ord2utf8.c
pcre_printint.src
pcre_refcount.c
pcre_scanner.cc
pcre_scanner.h
pcre_scanner_unittest.cc
pcre_stringpiece.cc
pcre_stringpiece.h.in
pcre_stringpiece_unittest.cc
pcre_study.c
pcre_tables.c
pcre_try_flipped.c
pcre_ucp_searchfuncs.c
pcre_valid_utf8.c
pcre_version.c
pcre_xclass.c
pcrecpp.cc
pcrecpp.h
pcrecpp_unittest.cc
pcrecpparg.h.in
pcredemo.c
pcregrep.c
pcreposix.c
pcreposix.h
pcretest.c
perltest
ucp.h
ucpinternal.h
ucptable.c
portaudio
sofia-sip
speex
sqlite
srtp
stfu
udns
voipcodecs
win32
xmlrpc-c
scripts
src
ssh_keys
support
w32
Freeswitch.2008.sln
Freeswitch.sln
INSTALL
Makefile.am
acinclude.m4
bootstrap.sh
configure.in
freeswitch.spec
34 lines
751 B
Groff
34 lines
751 B
Groff
![]() |
.TH PCRE_REFCOUNT 3
|
||
|
.SH NAME
|
||
|
PCRE - Perl-compatible regular expressions
|
||
|
.SH SYNOPSIS
|
||
|
.rs
|
||
|
.sp
|
||
|
.B #include <pcre.h>
|
||
|
.PP
|
||
|
.SM
|
||
|
.br
|
||
|
.B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP);
|
||
|
.
|
||
|
.SH DESCRIPTION
|
||
|
.rs
|
||
|
.sp
|
||
|
This function is used to maintain a reference count inside a data block that
|
||
|
contains a compiled pattern. Its arguments are:
|
||
|
.sp
|
||
|
\fIcode\fP Compiled regular expression
|
||
|
\fIadjust\fP Adjustment to reference value
|
||
|
.sp
|
||
|
The yield of the function is the adjusted reference value, which is constrained
|
||
|
to lie between 0 and 65535.
|
||
|
.P
|
||
|
There is a complete description of the PCRE native API in the
|
||
|
.\" HREF
|
||
|
\fBpcreapi\fP
|
||
|
.\"
|
||
|
page and a description of the POSIX API in the
|
||
|
.\" HREF
|
||
|
\fBpcreposix\fP
|
||
|
.\"
|
||
|
page.
|