1PCRE2_CODE_COPY(3) Library Functions Manual PCRE2_CODE_COPY(3)
2
3
4
6 PCRE2 - Perl-compatible regular expressions (revised API)
7
9
10 #include <pcre2.h>
11
12 pcre2_code *pcre2_code_copy_with_tables(const pcre2_code *code);
13
15
16 This function makes a copy of the memory used for a compiled pattern,
17 excluding any memory used by the JIT compiler. Without a subsequent
18 call to pcre2_jit_compile(), the copy can be used only for non-JIT
19 matching. Unlike pcre2_code_copy(), a separate copy of the character
20 tables is also made, with the new code pointing to it. This memory will
21 be automatically freed when pcre2_code_free() is called. The yield of
22 the function is NULL if code is NULL or if sufficient memory cannot be
23 obtained.
24
25 There is a complete description of the PCRE2 native API in the pcre2api
26 page and a description of the POSIX API in the pcre2posix page.
27
28
29
30PCRE2 10.23 22 November 2016 PCRE2_CODE_COPY(3)