| 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 |
.br
|
| 11 |
.B const unsigned char *pcre_maketables(void);
|
| 12 |
.
|
| 13 |
.SH DESCRIPTION
|
| 14 |
.rs
|
| 15 |
.sp
|
| 16 |
This function builds a set of character tables for character values less than
|
| 17 |
256. These can be passed to \fBpcre_compile()\fP to override PCRE's internal,
|
| 18 |
built-in tables (which were made by \fBpcre_maketables()\fP when PCRE was
|
| 19 |
compiled). You might want to do this if you are using a non-standard locale.
|
| 20 |
The function yields a pointer to the tables.
|
| 21 |
.P
|
| 22 |
There is a complete description of the PCRE native API in the
|
| 23 |
.\" HREF
|
| 24 |
\fBpcreapi\fP
|
| 25 |
.\"
|
| 26 |
page and a description of the POSIX API in the
|
| 27 |
.\" HREF
|
| 28 |
\fBpcreposix\fP
|
| 29 |
.\"
|
| 30 |
page.
|