Diff for /embedaddon/pcre/doc/pcre_config.3 between versions 1.1.1.3 and 1.1.1.5

version 1.1.1.3, 2012/10/09 09:19:17 version 1.1.1.5, 2014/06/15 19:46:05
Line 1 Line 1
.TH PCRE_CONFIG 3 "21 January 2012" "PCRE 8.30".TH PCRE_CONFIG 3 "05 November 2013" "PCRE 8.34"
 .SH NAME  .SH NAME
 PCRE - Perl-compatible regular expressions  PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS  .SH SYNOPSIS
Line 10  PCRE - Perl-compatible regular expressions Line 10  PCRE - Perl-compatible regular expressions
 .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);  .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);
 .PP  .PP
 .B int pcre16_config(int \fIwhat\fP, void *\fIwhere\fP);  .B int pcre16_config(int \fIwhat\fP, void *\fIwhere\fP);
   .PP
   .B int pcre32_config(int \fIwhat\fP, void *\fIwhere\fP);
 .  .
 .SH DESCRIPTION  .SH DESCRIPTION
 .rs  .rs
Line 31  point to an unsigned long integer. The available codes Line 33  point to an unsigned long integer. The available codes
                               target architecture for the JIT compiler,                                target architecture for the JIT compiler,
                               or NULL if there is no JIT support                                or NULL if there is no JIT support
   PCRE_CONFIG_LINK_SIZE     Internal link size: 2, 3, or 4    PCRE_CONFIG_LINK_SIZE     Internal link size: 2, 3, or 4
     PCRE_CONFIG_PARENS_LIMIT  Parentheses nesting limit
   PCRE_CONFIG_MATCH_LIMIT   Internal resource limit    PCRE_CONFIG_MATCH_LIMIT   Internal resource limit
   PCRE_CONFIG_MATCH_LIMIT_RECURSION    PCRE_CONFIG_MATCH_LIMIT_RECURSION
                             Internal recursion depth limit                              Internal recursion depth limit
Line 49  point to an unsigned long integer. The available codes Line 52  point to an unsigned long integer. The available codes
   PCRE_CONFIG_STACKRECURSE  Recursion implementation (1=stack 0=heap)    PCRE_CONFIG_STACKRECURSE  Recursion implementation (1=stack 0=heap)
   PCRE_CONFIG_UTF16         Availability of UTF-16 support (1=yes    PCRE_CONFIG_UTF16         Availability of UTF-16 support (1=yes
                                0=no); option for \fBpcre16_config()\fP                                 0=no); option for \fBpcre16_config()\fP
     PCRE_CONFIG_UTF32         Availability of UTF-32 support (1=yes
                                  0=no); option for \fBpcre32_config()\fP
   PCRE_CONFIG_UTF8          Availability of UTF-8 support (1=yes 0=no);    PCRE_CONFIG_UTF8          Availability of UTF-8 support (1=yes 0=no);
                               option for \fBpcre_config()\fP                                option for \fBpcre_config()\fP
   PCRE_CONFIG_UNICODE_PROPERTIES    PCRE_CONFIG_UNICODE_PROPERTIES
Line 56  point to an unsigned long integer. The available codes Line 61  point to an unsigned long integer. The available codes
                               (1=yes 0=no)                                (1=yes 0=no)
 .sp  .sp
 The function yields 0 on success or PCRE_ERROR_BADOPTION otherwise. That error  The function yields 0 on success or PCRE_ERROR_BADOPTION otherwise. That error
is also given if PCRE_CONFIG_UTF16 is passed to \fBpcre_config()\fP or ifis also given if PCRE_CONFIG_UTF16 or PCRE_CONFIG_UTF32 is passed to
PCRE_CONFIG_UTF8 is passed to \fBpcre16_config()\fP.\fBpcre_config()\fP, if PCRE_CONFIG_UTF8 or PCRE_CONFIG_UTF32 is passed to
 \fBpcre16_config()\fP, or if PCRE_CONFIG_UTF8 or PCRE_CONFIG_UTF16 is passed to
 \fBpcre32_config()\fP.
 .P  .P
 There is a complete description of the PCRE native API in the  There is a complete description of the PCRE native API in the
 .\" HREF  .\" HREF

Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>