Diff for /embedaddon/pcre/doc/pcre_config.3 between versions 1.1 and 1.1.1.2

version 1.1, 2012/02/21 23:05:52 version 1.1.1.2, 2012/02/21 23:50:25
Line 8  PCRE - Perl-compatible regular expressions Line 8  PCRE - Perl-compatible regular expressions
 .PP  .PP
 .SM  .SM
 .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);  .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);
   .PP
   .B int pcre16_config(int \fIwhat\fP, void *\fIwhere\fP);
 .  .
 .SH DESCRIPTION  .SH DESCRIPTION
 .rs  .rs
Line 25  point to an unsigned long integer. The available codes Line 27  point to an unsigned long integer. The available codes
 .sp  .sp
   PCRE_CONFIG_JIT           Availability of just-in-time compiler    PCRE_CONFIG_JIT           Availability of just-in-time compiler
                               support (1=yes 0=no)                                support (1=yes 0=no)
     PCRE_CONFIG_JITTARGET     String containing information about the
                                 target architecture for the JIT compiler,
                                 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_MATCH_LIMIT   Internal resource limit    PCRE_CONFIG_MATCH_LIMIT   Internal resource limit
   PCRE_CONFIG_MATCH_LIMIT_RECURSION    PCRE_CONFIG_MATCH_LIMIT_RECURSION
Line 42  point to an unsigned long integer. The available codes Line 47  point to an unsigned long integer. The available codes
                             Threshold of return slots, above which                              Threshold of return slots, above which
                               \fBmalloc()\fP is used by the POSIX API                                \fBmalloc()\fP is used by the POSIX API
   PCRE_CONFIG_STACKRECURSE  Recursion implementation (1=stack 0=heap)    PCRE_CONFIG_STACKRECURSE  Recursion implementation (1=stack 0=heap)
  PCRE_CONFIG_UTF8          Availability of UTF-8 support (1=yes 0=no)  PCRE_CONFIG_UTF16         Availability of UTF-16 support (1=yes
                                0=no); option for \fBpcre16_config()\fP
   PCRE_CONFIG_UTF8          Availability of UTF-8 support (1=yes 0=no);
                               option for \fBpcre_config()\fP
   PCRE_CONFIG_UNICODE_PROPERTIES    PCRE_CONFIG_UNICODE_PROPERTIES
                             Availability of Unicode property support                              Availability of Unicode property support
                               (1=yes 0=no)                                (1=yes 0=no)
 .sp  .sp
The function yields 0 on success or PCRE_ERROR_BADOPTION otherwise.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 if
 PCRE_CONFIG_UTF8 is passed to \fBpcre16_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  
changed lines
  Added in v.1.1.1.2


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