pcre2_convert_context_free.3 724 B

1234567891011121314151617181920212223242526
  1. .TH PCRE2_CONVERT_CONTEXT_FREE 3 "28 June 2018" "PCRE2 10.32"
  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. .nf
  10. .B void pcre2_convert_context_free(pcre2_convert_context *\fIcvcontext\fP);
  11. .fi
  12. .
  13. .SH DESCRIPTION
  14. .rs
  15. .sp
  16. This function is part of an experimental set of pattern conversion functions.
  17. It frees the memory occupied by a convert context, using the memory
  18. freeing function from the general context with which it was created, or
  19. \fBfree()\fP if that was not set. If the argument is NULL, the function returns
  20. immediately without doing anything.
  21. .P
  22. The pattern conversion functions are described in the
  23. .\" HREF
  24. \fBpcre2convert\fP
  25. .\"
  26. documentation.