1PCRE_MAKETABLES(3) Library Functions Manual PCRE_MAKETABLES(3)
2
3
4
6 PCRE - Perl-compatible regular expressions
7
9
10 #include <pcre.h>
11
12 const unsigned char *pcre_maketables(void);
13
14 const unsigned char *pcre16_maketables(void);
15
16 const unsigned char *pcre32_maketables(void);
17
19
20 This function builds a set of character tables for character values
21 less than 256. These can be passed to pcre[16|32]_compile() to override
22 PCRE's internal, built-in tables (which were made by
23 pcre[16|32]_maketables() when PCRE was compiled). You might want to do
24 this if you are using a non-standard locale. The function yields a
25 pointer to the tables.
26
27 There is a complete description of the PCRE native API in the pcreapi
28 page and a description of the POSIX API in the pcreposix page.
29
30
31
32PCRE 8.30 24 June 2012 PCRE_MAKETABLES(3)