Blame doc/pcre2_compile_context_free.3

Packit 504f36
.TH PCRE2_COMPILE_CONTEXT_FREE 3 "29 June 2018" "PCRE2 10.32"
Packit 504f36
.SH NAME
Packit 504f36
PCRE2 - Perl-compatible regular expressions (revised API)
Packit 504f36
.SH SYNOPSIS
Packit 504f36
.rs
Packit 504f36
.sp
Packit 504f36
.B #include <pcre2.h>
Packit 504f36
.PP
Packit 504f36
.nf
Packit 504f36
.B void pcre2_compile_context_free(pcre2_compile_context *\fIccontext\fP);
Packit 504f36
.fi
Packit 504f36
.
Packit 504f36
.SH DESCRIPTION
Packit 504f36
.rs
Packit 504f36
.sp
Packit 504f36
This function frees the memory occupied by a compile context, using the memory
Packit 504f36
freeing function from the general context with which it was created, or
Packit 504f36
\fBfree()\fP if that was not set. If the argument is NULL, the function returns
Packit 504f36
immediately without doing anything.
Packit 504f36
.P
Packit 504f36
There is a complete description of the PCRE2 native API in the
Packit 504f36
.\" HREF
Packit 504f36
\fBpcre2api\fP
Packit 504f36
.\"
Packit 504f36
page and a description of the POSIX API in the
Packit 504f36
.\" HREF
Packit 504f36
\fBpcre2posix\fP
Packit 504f36
.\"
Packit 504f36
page.