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
15
16 This function builds a set of character tables for character values
17 less than 256. These can be passed to pcre_compile() to override PCRE's
18 internal, built-in tables (which were made by pcre_maketables() when
19 PCRE was compiled). You might want to do this if you are using a non-
20 standard locale. The function yields a pointer to the tables.
21
22 There is a complete description of the PCRE native API in the pcreapi
23 page and a description of the POSIX API in the pcreposix page.
24
25
26
27 PCRE_MAKETABLES(3)