Annotation of embedaddon/pcre/doc/pcre_maketables.3, revision 1.1.1.4

1.1.1.4 ! misho       1: .TH PCRE_MAKETABLES 3 "24 June 2012" "PCRE 8.30"
1.1       misho       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);
1.1.1.2   misho      11: .PP
                     12: .B const unsigned char *pcre16_maketables(void);
1.1.1.4 ! misho      13: .PP
        !            14: .B const unsigned char *pcre32_maketables(void);
1.1       misho      15: .
                     16: .SH DESCRIPTION
                     17: .rs
                     18: .sp
                     19: This function builds a set of character tables for character values less than
1.1.1.4 ! misho      20: 256. These can be passed to \fBpcre[16|32]_compile()\fP to override PCRE's
        !            21: internal, built-in tables (which were made by \fBpcre[16|32]_maketables()\fP when
1.1.1.2   misho      22: PCRE was compiled). You might want to do this if you are using a non-standard
                     23: locale. The function yields a pointer to the tables.
1.1       misho      24: .P
                     25: There is a complete description of the PCRE native API in the
                     26: .\" HREF
                     27: \fBpcreapi\fP
                     28: .\"
                     29: page and a description of the POSIX API in the
                     30: .\" HREF
                     31: \fBpcreposix\fP
                     32: .\"
                     33: page.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>