github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
724 B

  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.