pcre2_substring_list_free.3 710 B

12345678910111213141516171819202122232425262728
  1. .TH PCRE2_SUBSTRING_LIST_FREE 3 "02 December 2023" "PCRE2 10.43"
  2. .SH NAME
  3. PCRE2 - Perl-compatible regular expressions (revised API)
  4. .SH SYNOPSIS
  5. .rs
  6. .sp
  7. .B #include <pcre2.h>
  8. .PP
  9. .SM
  10. .B void pcre2_substring_list_free(PCRE2_UCHAR **\fIlist\fP);
  11. .
  12. .SH DESCRIPTION
  13. .rs
  14. .sp
  15. This is a convenience function for freeing the store obtained by a previous
  16. call to \fBpcre2substring_list_get()\fP. Its only argument is a pointer to
  17. the list of string pointers. If the argument is NULL, the function returns
  18. immediately, without doing anything.
  19. .P
  20. There is a complete description of the PCRE2 native API in the
  21. .\" HREF
  22. \fBpcre2api\fP
  23. .\"
  24. page and a description of the POSIX API in the
  25. .\" HREF
  26. \fBpcre2posix\fP
  27. .\"
  28. page.