| 1 |
nigel |
63 |
.TH PCRE 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 which can be passed to |
| 17 |
|
|
\fBpcre_compile()\fR to override PCRE's internal, built-in tables (which were |
| 18 |
|
|
made by \fBpcre_maketables()\fR when PCRE was compiled). You might want to do |
| 19 |
|
|
this if you are using a non-standard locale. The function yields a pointer to |
| 20 |
|
|
the tables. |
| 21 |
|
|
|
| 22 |
|
|
There is a complete description of the PCRE API in the |
| 23 |
|
|
.\" HREF |
| 24 |
|
|
\fBpcreapi\fR |
| 25 |
|
|
.\" |
| 26 |
|
|
page. |