Diff for /embedaddon/pcre/doc/pcre_get_substring_list.3 between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:05:51 version 1.1.1.2, 2012/02/21 23:50:25
Line 10  PCRE - Perl-compatible regular expressions Line 10  PCRE - Perl-compatible regular expressions
 .B int pcre_get_substring_list(const char *\fIsubject\fP,  .B int pcre_get_substring_list(const char *\fIsubject\fP,
 .ti +5n  .ti +5n
 .B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);"  .B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);"
   .PP
   .B int pcre16_get_substring_list(PCRE_SPTR16 \fIsubject\fP,
   .ti +5n
   .B int *\fIovector\fP, int \fIstringcount\fP, "PCRE_SPTR16 **\fIlistptr\fP);"
 .  .
 .SH DESCRIPTION  .SH DESCRIPTION
 .rs  .rs
Line 18  This is a convenience function for extracting a list o Line 22  This is a convenience function for extracting a list o
 substrings. The arguments are:  substrings. The arguments are:
 .sp  .sp
   \fIsubject\fP       Subject that has been successfully matched    \fIsubject\fP       Subject that has been successfully matched
  \fIovector\fP       Offset vector that \fBpcre_exec\fP used  \fIovector\fP       Offset vector that \fBpcre[16]_exec\fP used
  \fIstringcount\fP   Value returned by \fBpcre_exec\fP  \fIstringcount\fP   Value returned by \fBpcre[16]_exec\fP
   \fIlistptr\fP       Where to put a pointer to the list    \fIlistptr\fP       Where to put a pointer to the list
 .sp  .sp
 The memory in which the substrings and the list are placed is obtained by  The memory in which the substrings and the list are placed is obtained by
calling \fBpcre_malloc()\fP. The convenience functioncalling \fBpcre[16]_malloc()\fP. The convenience function
\fBpcre_free_substring_list()\fP can be used to free it when it is no longer\fBpcre[16]_free_substring_list()\fP can be used to free it when it is no
needed. A pointer to a list of pointers is put in the variable whose address islonger needed. A pointer to a list of pointers is put in the variable whose
in \fIlistptr\fP. The list is terminated by a NULL pointer. The yield of theaddress is in \fIlistptr\fP. The list is terminated by a NULL pointer. The
function is zero on success or PCRE_ERROR_NOMEMORY if sufficient memory couldyield of the function is zero on success or PCRE_ERROR_NOMEMORY if sufficient
not be obtained.memory could not be obtained.
 .P  .P
 There is a complete description of the PCRE native API in the  There is a complete description of the PCRE native API in the
 .\" HREF  .\" HREF

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>