--- embedaddon/pcre/doc/html/pcre_config.html 2012/02/21 23:50:25 1.1.1.2 +++ embedaddon/pcre/doc/html/pcre_config.html 2013/07/22 08:25:57 1.1.1.3 @@ -24,6 +24,9 @@ SYNOPSIS

int pcre16_config(int what, void *where);

+

+int pcre32_config(int what, void *where); +


DESCRIPTION
@@ -63,6 +66,8 @@ point to an unsigned long integer. The available codes PCRE_CONFIG_STACKRECURSE Recursion implementation (1=stack 0=heap) PCRE_CONFIG_UTF16 Availability of UTF-16 support (1=yes 0=no); option for pcre16_config() + PCRE_CONFIG_UTF32 Availability of UTF-32 support (1=yes + 0=no); option for pcre32_config() PCRE_CONFIG_UTF8 Availability of UTF-8 support (1=yes 0=no); option for pcre_config() PCRE_CONFIG_UNICODE_PROPERTIES @@ -70,8 +75,10 @@ point to an unsigned long integer. The available codes (1=yes 0=no) The function yields 0 on success or PCRE_ERROR_BADOPTION otherwise. That error -is also given if PCRE_CONFIG_UTF16 is passed to pcre_config() or if -PCRE_CONFIG_UTF8 is passed to pcre16_config(). +is also given if PCRE_CONFIG_UTF16 or PCRE_CONFIG_UTF32 is passed to +pcre_config(), if PCRE_CONFIG_UTF8 or PCRE_CONFIG_UTF32 is passed to +pcre16_config(), or if PCRE_CONFIG_UTF8 or PCRE_CONFIG_UTF16 is passed to +pcre32_config().

There is a complete description of the PCRE native API in the