Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
PCRE_STUDY(3) | Library Functions Manual | PCRE_STUDY(3) |
NAME
PCRE - Perl-compatible regular expressionsSYNOPSIS
#include <pcre.h>pcre_extra *pcre_study(const pcre *code, int options, 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
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[16|32]_study()
errptr Where to put an error message
24 June 2012 | PCRE 8.30 |