Initial Import
[profile/ivi/pcre.git] / doc / pcre_maketables.3
1 .TH PCRE_MAKETABLES 3
2 .SH NAME
3 PCRE - Perl-compatible regular expressions
4 .SH SYNOPSIS
5 .rs
6 .sp
7 .B #include <pcre.h>
8 .PP
9 .SM
10 .B const unsigned char *pcre_maketables(void);
11 .
12 .SH DESCRIPTION
13 .rs
14 .sp
15 This function builds a set of character tables for character values less than
16 256. These can be passed to \fBpcre_compile()\fP to override PCRE's internal,
17 built-in tables (which were made by \fBpcre_maketables()\fP when PCRE was
18 compiled). You might want to do this if you are using a non-standard locale.
19 The function yields a pointer to the tables.
20 .P
21 There is a complete description of the PCRE native API in the
22 .\" HREF
23 \fBpcreapi\fP
24 .\"
25 page and a description of the POSIX API in the
26 .\" HREF
27 \fBpcreposix\fP
28 .\"
29 page.