--- embedaddon/pcre/doc/html/pcre_study.html 2012/02/21 23:05:52 1.1.1.1 +++ embedaddon/pcre/doc/html/pcre_study.html 2014/06/15 19:46:05 1.1.1.4 @@ -20,7 +20,15 @@ SYNOPSIS

pcre_extra *pcre_study(const pcre *code, int options, -const char **errptr); + const char **errptr); +
+
+pcre16_extra *pcre16_study(const pcre16 *code, int options, + const char **errptr); +
+
+pcre32_extra *pcre32_study(const pcre32 *code, int options, + const char **errptr);


DESCRIPTION @@ -30,11 +38,12 @@ This function studies a compiled pattern, to see if ad be extracted that might speed up matching. Its arguments are:
   code       A compiled regular expression
-  options    Options for pcre_study()
+  options    Options for pcre[16|32]_study()
   errptr     Where to put an error message
 
If the function succeeds, it returns a value that can be passed to -pcre_exec() or pcre_dfa_exec() via their extra arguments. +pcre[16|32]_exec() or pcre[16|32]_dfa_exec() via their extra +arguments.

If the function returns NULL, either it could not find any additional