--- embedaddon/pcre/doc/html/pcre16.html 2013/07/22 08:25:57 1.1.1.3 +++ embedaddon/pcre/doc/html/pcre16.html 2014/06/15 19:46:05 1.1.1.4 @@ -42,126 +42,126 @@ man page, in case the conversion went wrong.
PCRE 16-BIT API BASIC FUNCTIONS

pcre16 *pcre16_compile(PCRE_SPTR16 pattern, int options, -const char **errptr, int *erroffset, -const unsigned char *tableptr); -

-

+ const char **errptr, int *erroffset, + const unsigned char *tableptr); +
+
pcre16 *pcre16_compile2(PCRE_SPTR16 pattern, int options, -int *errorcodeptr, -const char **errptr, int *erroffset, -const unsigned char *tableptr); -

-

+ int *errorcodeptr, + const char **errptr, int *erroffset, + const unsigned char *tableptr); +
+
pcre16_extra *pcre16_study(const pcre16 *code, int options, -const char **errptr); -

-

+ const char **errptr); +
+
void pcre16_free_study(pcre16_extra *extra); -

-

+
+
int pcre16_exec(const pcre16 *code, const pcre16_extra *extra, -PCRE_SPTR16 subject, int length, int startoffset, -int options, int *ovector, int ovecsize); -

-

+ PCRE_SPTR16 subject, int length, int startoffset, + int options, int *ovector, int ovecsize); +
+
int pcre16_dfa_exec(const pcre16 *code, const pcre16_extra *extra, -PCRE_SPTR16 subject, int length, int startoffset, -int options, int *ovector, int ovecsize, -int *workspace, int wscount); + PCRE_SPTR16 subject, int length, int startoffset, + int options, int *ovector, int ovecsize, + int *workspace, int wscount);


PCRE 16-BIT API STRING EXTRACTION FUNCTIONS

int pcre16_copy_named_substring(const pcre16 *code, -PCRE_SPTR16 subject, int *ovector, -int stringcount, PCRE_SPTR16 stringname, -PCRE_UCHAR16 *buffer, int buffersize); -

-

+ PCRE_SPTR16 subject, int *ovector, + int stringcount, PCRE_SPTR16 stringname, + PCRE_UCHAR16 *buffer, int buffersize); +
+
int pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, -int stringcount, int stringnumber, PCRE_UCHAR16 *buffer, -int buffersize); -

-

+ int stringcount, int stringnumber, PCRE_UCHAR16 *buffer, + int buffersize); +
+
int pcre16_get_named_substring(const pcre16 *code, -PCRE_SPTR16 subject, int *ovector, -int stringcount, PCRE_SPTR16 stringname, -PCRE_SPTR16 *stringptr); -

-

+ PCRE_SPTR16 subject, int *ovector, + int stringcount, PCRE_SPTR16 stringname, + PCRE_SPTR16 *stringptr); +
+
int pcre16_get_stringnumber(const pcre16 *code, -PCRE_SPTR16 name); -

-

+" PCRE_SPTR16 name); +
+
int pcre16_get_stringtable_entries(const pcre16 *code, -PCRE_SPTR16 name, PCRE_UCHAR16 **first, PCRE_UCHAR16 **last); -

-

+ PCRE_SPTR16 name, PCRE_UCHAR16 **first, PCRE_UCHAR16 **last); +
+
int pcre16_get_substring(PCRE_SPTR16 subject, int *ovector, -int stringcount, int stringnumber, -PCRE_SPTR16 *stringptr); -

-

+ int stringcount, int stringnumber, + PCRE_SPTR16 *stringptr); +
+
int pcre16_get_substring_list(PCRE_SPTR16 subject, -int *ovector, int stringcount, PCRE_SPTR16 **listptr); -

-

+ int *ovector, int stringcount, PCRE_SPTR16 **listptr); +
+
void pcre16_free_substring(PCRE_SPTR16 stringptr); -

-

+
+
void pcre16_free_substring_list(PCRE_SPTR16 *stringptr);


PCRE 16-BIT API AUXILIARY FUNCTIONS

pcre16_jit_stack *pcre16_jit_stack_alloc(int startsize, int maxsize); -

-

+
+
void pcre16_jit_stack_free(pcre16_jit_stack *stack); -

-

+
+
void pcre16_assign_jit_stack(pcre16_extra *extra, -pcre16_jit_callback callback, void *data); -

-

+ pcre16_jit_callback callback, void *data); +
+
const unsigned char *pcre16_maketables(void); -

-

+
+
int pcre16_fullinfo(const pcre16 *code, const pcre16_extra *extra, -int what, void *where); -

-

+ int what, void *where); +
+
int pcre16_refcount(pcre16 *code, int adjust); -

-

+
+
int pcre16_config(int what, void *where); -

-

+
+
const char *pcre16_version(void); -

-

+
+
int pcre16_pattern_to_host_byte_order(pcre16 *code, -pcre16_extra *extra, const unsigned char *tables); + pcre16_extra *extra, const unsigned char *tables);


PCRE 16-BIT API INDIRECTED FUNCTIONS

void *(*pcre16_malloc)(size_t); -

-

+
+
void (*pcre16_free)(void *); -

-

+
+
void *(*pcre16_stack_malloc)(size_t); -

-

+
+
void (*pcre16_stack_free)(void *); -

-

+
+
int (*pcre16_callout)(pcre16_callout_block *);


PCRE 16-BIT API 16-BIT-ONLY FUNCTION

int pcre16_utf16_to_host_byte_order(PCRE_UCHAR16 *output, -PCRE_SPTR16 input, int length, int *byte_order, -int keep_boms); + PCRE_SPTR16 input, int length, int *byte_order, + int keep_boms);


THE PCRE 16-BIT LIBRARY