| 1 |
.TH PCRE 3
|
| 2 |
.SH NAME
|
| 3 |
PCRE - Perl-compatible regular expressions
|
| 4 |
.SH SYNOPSIS
|
| 5 |
.rs
|
| 6 |
.sp
|
| 7 |
.B #include <pcre.h>
|
| 8 |
.PP
|
| 9 |
.SM
|
| 10 |
.br
|
| 11 |
.B int pcre_info(pcre *\fIcode\fP, int \fIadjust\fP);
|
| 12 |
.
|
| 13 |
.SH DESCRIPTION
|
| 14 |
.rs
|
| 15 |
.sp
|
| 16 |
This function is used to maintain a reference count inside a data block that
|
| 17 |
contains a compiled pattern. Its arguments are:
|
| 18 |
.sp
|
| 19 |
\fIcode\fP Compiled regular expression
|
| 20 |
\fIadjust\fP Adjustment to reference value
|
| 21 |
.sp
|
| 22 |
The yield of the function is the adjusted reference value, which is constrained
|
| 23 |
to lie between 0 and 65535.
|
| 24 |
.P
|
| 25 |
There is a complete description of the PCRE native API in the
|
| 26 |
.\" HREF
|
| 27 |
\fBpcreapi\fP
|
| 28 |
.\"
|
| 29 |
page and a description of the POSIX API in the
|
| 30 |
.\" HREF
|
| 31 |
\fBpcreposix\fP
|
| 32 |
.\"
|
| 33 |
page.
|