blob: df1aa1f4b990b331cb09dca96f97fdadc9400d60 [file] [log] [blame]
Elliott Hughes653c2102019-01-09 15:41:36 -08001.TH PCRE2_GENERAL_CONTEXT_FREE 3 "28 June 2018" "PCRE2 10.32"
Janis Danisevskis112c9cc2016-03-31 13:35:25 +01002.SH NAME
3PCRE2 - 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_general_context_free(pcre2_general_context *\fIgcontext\fP);
11.fi
12.
13.SH DESCRIPTION
14.rs
15.sp
16This function frees the memory occupied by a general context, using the memory
Elliott Hughes653c2102019-01-09 15:41:36 -080017freeing function within the context, if set. If the argument is NULL, the
18function returns immediately without doing anything.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010019.P
20There is a complete description of the PCRE2 native API in the
21.\" HREF
22\fBpcre2api\fP
23.\"
24page and a description of the POSIX API in the
25.\" HREF
26\fBpcre2posix\fP
27.\"
28page.