Diff for /embedaddon/pcre/doc/html/pcre_get_substring_list.html between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.3, 2013/07/22 08:25:57
Line 26  SYNOPSIS Line 26  SYNOPSIS
 <b>int pcre16_get_substring_list(PCRE_SPTR16 <i>subject</i>,</b>  <b>int pcre16_get_substring_list(PCRE_SPTR16 <i>subject</i>,</b>
 <b>int *<i>ovector</i>, int <i>stringcount</i>, PCRE_SPTR16 **<i>listptr</i>);</b>  <b>int *<i>ovector</i>, int <i>stringcount</i>, PCRE_SPTR16 **<i>listptr</i>);</b>
 </P>  </P>
   <P>
   <b>int pcre32_get_substring_list(PCRE_SPTR32 <i>subject</i>,</b>
   <b>int *<i>ovector</i>, int <i>stringcount</i>, PCRE_SPTR32 **<i>listptr</i>);</b>
   </P>
 <br><b>  <br><b>
 DESCRIPTION  DESCRIPTION
 </b><br>  </b><br>
Line 34  This is a convenience function for extracting a list o Line 38  This is a convenience function for extracting a list o
 substrings. The arguments are:  substrings. The arguments are:
 <pre>  <pre>
   <i>subject</i>       Subject that has been successfully matched    <i>subject</i>       Subject that has been successfully matched
  <i>ovector</i>       Offset vector that <b>pcre[16]_exec</b> used  <i>ovector</i>       Offset vector that <b>pcre[16|32]_exec</b> used
  <i>stringcount</i>   Value returned by <b>pcre[16]_exec</b>  <i>stringcount</i>   Value returned by <b>pcre[16|32]_exec</b>
   <i>listptr</i>       Where to put a pointer to the list    <i>listptr</i>       Where to put a pointer to the list
 </pre>  </pre>
 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 <b>pcre[16]_malloc()</b>. The convenience functioncalling <b>pcre[16|32]_malloc()</b>. The convenience function
<b>pcre[16]_free_substring_list()</b> can be used to free it when it is no<b>pcre[16|32]_free_substring_list()</b> can be used to free it when it is no
 longer needed. A pointer to a list of pointers is put in the variable whose  longer needed. A pointer to a list of pointers is put in the variable whose
 address is in <i>listptr</i>. The list is terminated by a NULL pointer. The  address is in <i>listptr</i>. The list is terminated by a NULL pointer. The
 yield of the function is zero on success or PCRE_ERROR_NOMEMORY if sufficient  yield of the function is zero on success or PCRE_ERROR_NOMEMORY if sufficient

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


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