From 582b500cd996c96054615870fd13d6ab0ea77428 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 10 Oct 2009 15:10:05 +0000 Subject: start integrating windows port git-svn-id: svn+q:///qpdf/trunk@757 71b93d88-0707-0410-a8cf-f5a4172ac649 --- external-libs/pcre/doc/html/pcre_study.html | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 external-libs/pcre/doc/html/pcre_study.html (limited to 'external-libs/pcre/doc/html/pcre_study.html') diff --git a/external-libs/pcre/doc/html/pcre_study.html b/external-libs/pcre/doc/html/pcre_study.html new file mode 100644 index 00000000..f3727d1f --- /dev/null +++ b/external-libs/pcre/doc/html/pcre_study.html @@ -0,0 +1,45 @@ + + +pcre_study specification + + +This HTML document has been generated automatically from the original man page. +If there is any nonsense in it, please consult the man page, in case the +conversion went wrong.
+
+SYNOPSIS +
+

+#include <pcre.h> +

+

+pcre_extra *pcre_study(const pcre *code, int options, +const char **errptr); +

+
+DESCRIPTION +
+

+This function studies a compiled pattern, to see if additional information can +be extracted that might speed up matching. Its arguments are: +

+

+

+  code       A compiled regular expression
+  options    Options for pcre_study()
+  errptr     Where to put an error message
+
+

+

+If the function returns NULL, either it could not find any additional +information, or there was an error. You can tell the difference by looking at +the error value. It is NULL in first case. +

+

+There are currently no options defined; the value of the second argument should +always be zero. +

+

+There is a complete description of the PCRE API in the +pcreapi +page. -- cgit v1.2.3-54-g00ecf