pcre32 *pcre32_compile(PCRE_SPTR32 pattern, int options, " const char **errptr, int *erroffset," " const unsigned char *tableptr);" pcre32 *pcre32_compile2(PCRE_SPTR32 pattern, int options, " int *errorcodeptr," " const unsigned char *tableptr);" pcre32_extra *pcre32_study(const pcre32 *code, int options, " const char **errptr);" void pcre32_free_study(pcre32_extra *extra); int pcre32_exec(const pcre32 *code, "const pcre32_extra *extra," " PCRE_SPTR32 subject, int length, int startoffset," " int options, int *ovector, int ovecsize);" int pcre32_dfa_exec(const pcre32 *code, "const pcre32_extra *extra," " PCRE_SPTR32 subject, int length, int startoffset," " int options, int *ovector, int ovecsize," " int *workspace, int wscount);". .
int pcre32_copy_named_substring(const pcre32 *code, " PCRE_SPTR32 subject, int *ovector," " int stringcount, PCRE_SPTR32 stringname," " PCRE_UCHAR32 *buffer, int buffersize);" int pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, " int stringcount, int stringnumber, PCRE_UCHAR32 *buffer," " int buffersize);" int pcre32_get_named_substring(const pcre32 *code, " PCRE_SPTR32 subject, int *ovector," " int stringcount, PCRE_SPTR32 stringname," " PCRE_SPTR32 *stringptr);" int pcre32_get_stringnumber(const pcre32 *code, " PCRE_SPTR32 name);" int pcre32_get_stringtable_entries(const pcre32 *code, " PCRE_SPTR32 name, PCRE_UCHAR32 **first, PCRE_UCHAR32 **last);" int pcre32_get_substring(PCRE_SPTR32 subject, int *ovector, " int stringcount, int stringnumber," " PCRE_SPTR32 *stringptr);" int pcre32_get_substring_list(PCRE_SPTR32 subject, " int *ovector, int stringcount, PCRE_SPTR32 **listptr);" void pcre32_free_substring(PCRE_SPTR32 stringptr); void pcre32_free_substring_list(PCRE_SPTR32 *stringptr);. .
pcre32_jit_stack *pcre32_jit_stack_alloc(int startsize, int maxsize); void pcre32_jit_stack_free(pcre32_jit_stack *stack); void pcre32_assign_jit_stack(pcre32_extra *extra, " pcre32_jit_callback callback, void *data);" const unsigned char *pcre32_maketables(void); int pcre32_fullinfo(const pcre32 *code, "const pcre32_extra *extra," " int what, void *where);" int pcre32_refcount(pcre32 *code, int adjust); int pcre32_config(int what, void *where); const char *pcre32_version(void); int pcre32_pattern_to_host_byte_order(pcre32 *code, " pcre32_extra *extra, const unsigned char *tables);". .
void *(*pcre32_malloc)(size_t); void (*pcre32_free)(void *); void *(*pcre32_stack_malloc)(size_t); void (*pcre32_stack_free)(void *); int (*pcre32_callout)(pcre32_callout_block *);. .
int pcre32_utf32_to_host_byte_order(PCRE_UCHAR32 *output, " PCRE_SPTR32 input, int length, int *byte_order," " int keep_boms);". .
WARNING: A single application can be linked with all or any of the three libraries, but you must take care when processing any particular pattern to use functions from just one library. For example, if you want to study a pattern that was compiled with pcre32_compile(), you must do so with pcre32_study(), not pcre_study(), and you must free the study data with pcre32_free_study(). . .
The input and output arguments of pcre32_utf32_to_host_byte_order() may point to the same address, that is, conversion in place is supported. The output buffer must be at least as long as the input.
The length argument specifies the number of 32-bit data units in the input string; a negative value specifies a zero-terminated string.
If byte_order is NULL, it is assumed that the string starts off in host byte order. This may be changed by byte-order marks (BOMs) anywhere in the string (commonly as the first character).
If byte_order is not NULL, a non-zero value of the integer to which it points means that the input starts off in host byte order, otherwise the opposite order is assumed. Again, BOMs in the string can change this. The final byte order is passed back at the end of processing.
If keep_boms is not zero, byte-order mark characters (0xfeff) are copied into the output string. Otherwise they are discarded.
The result of the function is the number of 32-bit units placed into the output buffer, including the zero terminator if the string was zero-terminated. . .
</a>
validity of UTF-32 strings
in the HREF
pcreunicode
page.
For the pcre32_config() function there is an option PCRE_CONFIG_UTF32 that returns 1 if UTF-32 support is configured, otherwise 0. If this option is given to pcre_config() or pcre16_config(), or if the PCRE_CONFIG_UTF8 or PCRE_CONFIG_UTF16 option is given to pcre32_config(), the result is the PCRE_ERROR_BADOPTION error. . .
In UTF-32 mode, the character code is Unicode, in the range 0 to 0x10ffff, with the exception of values in the range 0xd800 to 0xdfff because those are "surrogate" values that are ill-formed in UTF-32.
A UTF-32 string can indicate its endianness by special code knows as a byte-order mark (BOM). The PCRE functions do not handle this, expecting strings to be in host byte order. A utility function called pcre32_utf32_to_host_byte_order() is provided to help with this (see above). . .
There are new error codes whose names begin with PCRE_UTF32_ERR for invalid
UTF-32 strings, corresponding to the PCRE_UTF8_ERR codes for UTF-8 strings that
are described in the section entitled
HTML <a href="pcreapi.html#badutf8reasons">
</a>
"Reason codes for invalid UTF-8 strings"
in the main
HREF
pcreapi
page. The UTF-32 errors are:
PCRE_UTF32_ERR1 Surrogate character (range from 0xd800 to 0xdfff)
PCRE_UTF32_ERR2 Non-character
PCRE_UTF32_ERR3 Character > 0x10ffff
.
.
When PCRE is being built, the RunTest script that is called by "make check" uses the pcretest -C option to discover which of the 8-bit, 16-bit and 32-bit libraries has been built, and runs the tests appropriately. . .
Philip Hazel University Computing Service Cambridge CB2 3QH, England.. .
Last updated: 12 May 2013 Copyright (c) 1997-2013 University of Cambridge.