• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

src/pcre/pcre_tables.c

00001 /*************************************************
00002 *      Perl-Compatible Regular Expressions       *
00003 *************************************************/
00004 
00005 /* PCRE is a library of functions to support regular expressions whose syntax
00006 and semantics are as close as possible to those of the Perl 5 language.
00007 
00008                        Written by Philip Hazel
00009            Copyright (c) 1997-2009 University of Cambridge
00010 
00011 -----------------------------------------------------------------------------
00012 Redistribution and use in source and binary forms, with or without
00013 modification, are permitted provided that the following conditions are met:
00014 
00015     * Redistributions of source code must retain the above copyright notice,
00016       this list of conditions and the following disclaimer.
00017 
00018     * Redistributions in binary form must reproduce the above copyright
00019       notice, this list of conditions and the following disclaimer in the
00020       documentation and/or other materials provided with the distribution.
00021 
00022     * Neither the name of the University of Cambridge nor the names of its
00023       contributors may be used to endorse or promote products derived from
00024       this software without specific prior written permission.
00025 
00026 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00027 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00028 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00029 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00030 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00031 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00032 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00033 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00034 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00035 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00036 POSSIBILITY OF SUCH DAMAGE.
00037 -----------------------------------------------------------------------------
00038 */
00039 
00040 
00041 /* This module contains some fixed tables that are used by more than one of the
00042 PCRE code modules. The tables are also #included by the pcretest program, which
00043 uses macros to change their names from _pcre_xxx to xxxx, thereby avoiding name
00044 clashes with the library. */
00045 
00046 
00047 #ifdef HAVE_CONFIG_H
00048 #include "config.h"
00049 #else if defined(_WINDOWS)
00050 #include <spl/configwin32.h>
00051 #endif
00052 
00053 
00054 #include "pcre_internal.h"
00055 
00056 
00057 /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that
00058 the definition is next to the definition of the opcodes in pcre_internal.h. */
00059 
00060 const uschar _pcre_OP_lengths[] = { OP_LENGTHS };
00061 
00062 
00063 
00064 /*************************************************
00065 *           Tables for UTF-8 support             *
00066 *************************************************/
00067 
00068 /* These are the breakpoints for different numbers of bytes in a UTF-8
00069 character. */
00070 
00071 #ifdef SUPPORT_UTF8
00072 
00073 const int _pcre_utf8_table1[] =
00074   { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};
00075 
00076 const int _pcre_utf8_table1_size = sizeof(_pcre_utf8_table1)/sizeof(int);
00077 
00078 /* These are the indicator bits and the mask for the data bits to set in the
00079 first byte of a character, indexed by the number of additional bytes. */
00080 
00081 const int _pcre_utf8_table2[] = { 0,    0xc0, 0xe0, 0xf0, 0xf8, 0xfc};
00082 const int _pcre_utf8_table3[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
00083 
00084 /* Table of the number of extra bytes, indexed by the first byte masked with
00085 0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */
00086 
00087 const uschar _pcre_utf8_table4[] = {
00088   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
00089   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
00090   2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
00091   3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
00092 
00093 /* Table to translate from particular type value to the general value. */
00094 
00095 const int _pcre_ucp_gentype[] = {
00096   ucp_C, ucp_C, ucp_C, ucp_C, ucp_C,  /* Cc, Cf, Cn, Co, Cs */
00097   ucp_L, ucp_L, ucp_L, ucp_L, ucp_L,  /* Ll, Lu, Lm, Lo, Lt */
00098   ucp_M, ucp_M, ucp_M,                /* Mc, Me, Mn */
00099   ucp_N, ucp_N, ucp_N,                /* Nd, Nl, No */
00100   ucp_P, ucp_P, ucp_P, ucp_P, ucp_P,  /* Pc, Pd, Pe, Pf, Pi */
00101   ucp_P, ucp_P,                       /* Ps, Po */
00102   ucp_S, ucp_S, ucp_S, ucp_S,         /* Sc, Sk, Sm, So */
00103   ucp_Z, ucp_Z, ucp_Z                 /* Zl, Zp, Zs */
00104 };
00105 
00106 /* The pcre_utt[] table below translates Unicode property names into type and
00107 code values. It is searched by binary chop, so must be in collating sequence of
00108 name. Originally, the table contained pointers to the name strings in the first
00109 field of each entry. However, that leads to a large number of relocations when
00110 a shared library is dynamically loaded. A significant reduction is made by
00111 putting all the names into a single, large string and then using offsets in the
00112 table itself. Maintenance is more error-prone, but frequent changes to this
00113 data are unlikely.
00114 
00115 July 2008: There is now a script called maint/GenerateUtt.py that can be used
00116 to generate this data instead of maintaining it entirely by hand.
00117 
00118 The script was updated in March 2009 to generate a new EBCDIC-compliant
00119 version. Like all other character and string literals that are compared against
00120 the regular expression pattern, we must use STR_ macros instead of literal
00121 strings to make sure that UTF-8 support works on EBCDIC platforms. */
00122 
00123 #define STRING_Any0 STR_A STR_n STR_y "\0"
00124 #define STRING_Arabic0 STR_A STR_r STR_a STR_b STR_i STR_c "\0"
00125 #define STRING_Armenian0 STR_A STR_r STR_m STR_e STR_n STR_i STR_a STR_n "\0"
00126 #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"
00127 #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"
00128 #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"
00129 #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"
00130 #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"
00131 #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"
00132 #define STRING_C0 STR_C "\0"
00133 #define STRING_Canadian_Aboriginal0 STR_C STR_a STR_n STR_a STR_d STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_b STR_o STR_r STR_i STR_g STR_i STR_n STR_a STR_l "\0"
00134 #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"
00135 #define STRING_Cc0 STR_C STR_c "\0"
00136 #define STRING_Cf0 STR_C STR_f "\0"
00137 #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"
00138 #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"
00139 #define STRING_Cn0 STR_C STR_n "\0"
00140 #define STRING_Co0 STR_C STR_o "\0"
00141 #define STRING_Common0 STR_C STR_o STR_m STR_m STR_o STR_n "\0"
00142 #define STRING_Coptic0 STR_C STR_o STR_p STR_t STR_i STR_c "\0"
00143 #define STRING_Cs0 STR_C STR_s "\0"
00144 #define STRING_Cuneiform0 STR_C STR_u STR_n STR_e STR_i STR_f STR_o STR_r STR_m "\0"
00145 #define STRING_Cypriot0 STR_C STR_y STR_p STR_r STR_i STR_o STR_t "\0"
00146 #define STRING_Cyrillic0 STR_C STR_y STR_r STR_i STR_l STR_l STR_i STR_c "\0"
00147 #define STRING_Deseret0 STR_D STR_e STR_s STR_e STR_r STR_e STR_t "\0"
00148 #define STRING_Devanagari0 STR_D STR_e STR_v STR_a STR_n STR_a STR_g STR_a STR_r STR_i "\0"
00149 #define STRING_Ethiopic0 STR_E STR_t STR_h STR_i STR_o STR_p STR_i STR_c "\0"
00150 #define STRING_Georgian0 STR_G STR_e STR_o STR_r STR_g STR_i STR_a STR_n "\0"
00151 #define STRING_Glagolitic0 STR_G STR_l STR_a STR_g STR_o STR_l STR_i STR_t STR_i STR_c "\0"
00152 #define STRING_Gothic0 STR_G STR_o STR_t STR_h STR_i STR_c "\0"
00153 #define STRING_Greek0 STR_G STR_r STR_e STR_e STR_k "\0"
00154 #define STRING_Gujarati0 STR_G STR_u STR_j STR_a STR_r STR_a STR_t STR_i "\0"
00155 #define STRING_Gurmukhi0 STR_G STR_u STR_r STR_m STR_u STR_k STR_h STR_i "\0"
00156 #define STRING_Han0 STR_H STR_a STR_n "\0"
00157 #define STRING_Hangul0 STR_H STR_a STR_n STR_g STR_u STR_l "\0"
00158 #define STRING_Hanunoo0 STR_H STR_a STR_n STR_u STR_n STR_o STR_o "\0"
00159 #define STRING_Hebrew0 STR_H STR_e STR_b STR_r STR_e STR_w "\0"
00160 #define STRING_Hiragana0 STR_H STR_i STR_r STR_a STR_g STR_a STR_n STR_a "\0"
00161 #define STRING_Inherited0 STR_I STR_n STR_h STR_e STR_r STR_i STR_t STR_e STR_d "\0"
00162 #define STRING_Kannada0 STR_K STR_a STR_n STR_n STR_a STR_d STR_a "\0"
00163 #define STRING_Katakana0 STR_K STR_a STR_t STR_a STR_k STR_a STR_n STR_a "\0"
00164 #define STRING_Kayah_Li0 STR_K STR_a STR_y STR_a STR_h STR_UNDERSCORE STR_L STR_i "\0"
00165 #define STRING_Kharoshthi0 STR_K STR_h STR_a STR_r STR_o STR_s STR_h STR_t STR_h STR_i "\0"
00166 #define STRING_Khmer0 STR_K STR_h STR_m STR_e STR_r "\0"
00167 #define STRING_L0 STR_L "\0"
00168 #define STRING_L_AMPERSAND0 STR_L STR_AMPERSAND "\0"
00169 #define STRING_Lao0 STR_L STR_a STR_o "\0"
00170 #define STRING_Latin0 STR_L STR_a STR_t STR_i STR_n "\0"
00171 #define STRING_Lepcha0 STR_L STR_e STR_p STR_c STR_h STR_a "\0"
00172 #define STRING_Limbu0 STR_L STR_i STR_m STR_b STR_u "\0"
00173 #define STRING_Linear_B0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_B "\0"
00174 #define STRING_Ll0 STR_L STR_l "\0"
00175 #define STRING_Lm0 STR_L STR_m "\0"
00176 #define STRING_Lo0 STR_L STR_o "\0"
00177 #define STRING_Lt0 STR_L STR_t "\0"
00178 #define STRING_Lu0 STR_L STR_u "\0"
00179 #define STRING_Lycian0 STR_L STR_y STR_c STR_i STR_a STR_n "\0"
00180 #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"
00181 #define STRING_M0 STR_M "\0"
00182 #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"
00183 #define STRING_Mc0 STR_M STR_c "\0"
00184 #define STRING_Me0 STR_M STR_e "\0"
00185 #define STRING_Mn0 STR_M STR_n "\0"
00186 #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"
00187 #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"
00188 #define STRING_N0 STR_N "\0"
00189 #define STRING_Nd0 STR_N STR_d "\0"
00190 #define STRING_New_Tai_Lue0 STR_N STR_e STR_w STR_UNDERSCORE STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_u STR_e "\0"
00191 #define STRING_Nko0 STR_N STR_k STR_o "\0"
00192 #define STRING_Nl0 STR_N STR_l "\0"
00193 #define STRING_No0 STR_N STR_o "\0"
00194 #define STRING_Ogham0 STR_O STR_g STR_h STR_a STR_m "\0"
00195 #define STRING_Ol_Chiki0 STR_O STR_l STR_UNDERSCORE STR_C STR_h STR_i STR_k STR_i "\0"
00196 #define STRING_Old_Italic0 STR_O STR_l STR_d STR_UNDERSCORE STR_I STR_t STR_a STR_l STR_i STR_c "\0"
00197 #define STRING_Old_Persian0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_s STR_i STR_a STR_n "\0"
00198 #define STRING_Oriya0 STR_O STR_r STR_i STR_y STR_a "\0"
00199 #define STRING_Osmanya0 STR_O STR_s STR_m STR_a STR_n STR_y STR_a "\0"
00200 #define STRING_P0 STR_P "\0"
00201 #define STRING_Pc0 STR_P STR_c "\0"
00202 #define STRING_Pd0 STR_P STR_d "\0"
00203 #define STRING_Pe0 STR_P STR_e "\0"
00204 #define STRING_Pf0 STR_P STR_f "\0"
00205 #define STRING_Phags_Pa0 STR_P STR_h STR_a STR_g STR_s STR_UNDERSCORE STR_P STR_a "\0"
00206 #define STRING_Phoenician0 STR_P STR_h STR_o STR_e STR_n STR_i STR_c STR_i STR_a STR_n "\0"
00207 #define STRING_Pi0 STR_P STR_i "\0"
00208 #define STRING_Po0 STR_P STR_o "\0"
00209 #define STRING_Ps0 STR_P STR_s "\0"
00210 #define STRING_Rejang0 STR_R STR_e STR_j STR_a STR_n STR_g "\0"
00211 #define STRING_Runic0 STR_R STR_u STR_n STR_i STR_c "\0"
00212 #define STRING_S0 STR_S "\0"
00213 #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"
00214 #define STRING_Sc0 STR_S STR_c "\0"
00215 #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"
00216 #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"
00217 #define STRING_Sk0 STR_S STR_k "\0"
00218 #define STRING_Sm0 STR_S STR_m "\0"
00219 #define STRING_So0 STR_S STR_o "\0"
00220 #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"
00221 #define STRING_Syloti_Nagri0 STR_S STR_y STR_l STR_o STR_t STR_i STR_UNDERSCORE STR_N STR_a STR_g STR_r STR_i "\0"
00222 #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"
00223 #define STRING_Tagalog0 STR_T STR_a STR_g STR_a STR_l STR_o STR_g "\0"
00224 #define STRING_Tagbanwa0 STR_T STR_a STR_g STR_b STR_a STR_n STR_w STR_a "\0"
00225 #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"
00226 #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"
00227 #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"
00228 #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"
00229 #define STRING_Thai0 STR_T STR_h STR_a STR_i "\0"
00230 #define STRING_Tibetan0 STR_T STR_i STR_b STR_e STR_t STR_a STR_n "\0"
00231 #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"
00232 #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"
00233 #define STRING_Vai0 STR_V STR_a STR_i "\0"
00234 #define STRING_Yi0 STR_Y STR_i "\0"
00235 #define STRING_Z0 STR_Z "\0"
00236 #define STRING_Zl0 STR_Z STR_l "\0"
00237 #define STRING_Zp0 STR_Z STR_p "\0"
00238 #define STRING_Zs0 STR_Z STR_s "\0"
00239 
00240 const char _pcre_utt_names[] =
00241   STRING_Any0
00242   STRING_Arabic0
00243   STRING_Armenian0
00244   STRING_Balinese0
00245   STRING_Bengali0
00246   STRING_Bopomofo0
00247   STRING_Braille0
00248   STRING_Buginese0
00249   STRING_Buhid0
00250   STRING_C0
00251   STRING_Canadian_Aboriginal0
00252   STRING_Carian0
00253   STRING_Cc0
00254   STRING_Cf0
00255   STRING_Cham0
00256   STRING_Cherokee0
00257   STRING_Cn0
00258   STRING_Co0
00259   STRING_Common0
00260   STRING_Coptic0
00261   STRING_Cs0
00262   STRING_Cuneiform0
00263   STRING_Cypriot0
00264   STRING_Cyrillic0
00265   STRING_Deseret0
00266   STRING_Devanagari0
00267   STRING_Ethiopic0
00268   STRING_Georgian0
00269   STRING_Glagolitic0
00270   STRING_Gothic0
00271   STRING_Greek0
00272   STRING_Gujarati0
00273   STRING_Gurmukhi0
00274   STRING_Han0
00275   STRING_Hangul0
00276   STRING_Hanunoo0
00277   STRING_Hebrew0
00278   STRING_Hiragana0
00279   STRING_Inherited0
00280   STRING_Kannada0
00281   STRING_Katakana0
00282   STRING_Kayah_Li0
00283   STRING_Kharoshthi0
00284   STRING_Khmer0
00285   STRING_L0
00286   STRING_L_AMPERSAND0
00287   STRING_Lao0
00288   STRING_Latin0
00289   STRING_Lepcha0
00290   STRING_Limbu0
00291   STRING_Linear_B0
00292   STRING_Ll0
00293   STRING_Lm0
00294   STRING_Lo0
00295   STRING_Lt0
00296   STRING_Lu0
00297   STRING_Lycian0
00298   STRING_Lydian0
00299   STRING_M0
00300   STRING_Malayalam0
00301   STRING_Mc0
00302   STRING_Me0
00303   STRING_Mn0
00304   STRING_Mongolian0
00305   STRING_Myanmar0
00306   STRING_N0
00307   STRING_Nd0
00308   STRING_New_Tai_Lue0
00309   STRING_Nko0
00310   STRING_Nl0
00311   STRING_No0
00312   STRING_Ogham0
00313   STRING_Ol_Chiki0
00314   STRING_Old_Italic0
00315   STRING_Old_Persian0
00316   STRING_Oriya0
00317   STRING_Osmanya0
00318   STRING_P0
00319   STRING_Pc0
00320   STRING_Pd0
00321   STRING_Pe0
00322   STRING_Pf0
00323   STRING_Phags_Pa0
00324   STRING_Phoenician0
00325   STRING_Pi0
00326   STRING_Po0
00327   STRING_Ps0
00328   STRING_Rejang0
00329   STRING_Runic0
00330   STRING_S0
00331   STRING_Saurashtra0
00332   STRING_Sc0
00333   STRING_Shavian0
00334   STRING_Sinhala0
00335   STRING_Sk0
00336   STRING_Sm0
00337   STRING_So0
00338   STRING_Sundanese0
00339   STRING_Syloti_Nagri0
00340   STRING_Syriac0
00341   STRING_Tagalog0
00342   STRING_Tagbanwa0
00343   STRING_Tai_Le0
00344   STRING_Tamil0
00345   STRING_Telugu0
00346   STRING_Thaana0
00347   STRING_Thai0
00348   STRING_Tibetan0
00349   STRING_Tifinagh0
00350   STRING_Ugaritic0
00351   STRING_Vai0
00352   STRING_Yi0
00353   STRING_Z0
00354   STRING_Zl0
00355   STRING_Zp0
00356   STRING_Zs0;
00357 
00358 const ucp_type_table _pcre_utt[] = {
00359   {   0, PT_ANY, 0 },
00360   {   4, PT_SC, ucp_Arabic },
00361   {  11, PT_SC, ucp_Armenian },
00362   {  20, PT_SC, ucp_Balinese },
00363   {  29, PT_SC, ucp_Bengali },
00364   {  37, PT_SC, ucp_Bopomofo },
00365   {  46, PT_SC, ucp_Braille },
00366   {  54, PT_SC, ucp_Buginese },
00367   {  63, PT_SC, ucp_Buhid },
00368   {  69, PT_GC, ucp_C },
00369   {  71, PT_SC, ucp_Canadian_Aboriginal },
00370   {  91, PT_SC, ucp_Carian },
00371   {  98, PT_PC, ucp_Cc },
00372   { 101, PT_PC, ucp_Cf },
00373   { 104, PT_SC, ucp_Cham },
00374   { 109, PT_SC, ucp_Cherokee },
00375   { 118, PT_PC, ucp_Cn },
00376   { 121, PT_PC, ucp_Co },
00377   { 124, PT_SC, ucp_Common },
00378   { 131, PT_SC, ucp_Coptic },
00379   { 138, PT_PC, ucp_Cs },
00380   { 141, PT_SC, ucp_Cuneiform },
00381   { 151, PT_SC, ucp_Cypriot },
00382   { 159, PT_SC, ucp_Cyrillic },
00383   { 168, PT_SC, ucp_Deseret },
00384   { 176, PT_SC, ucp_Devanagari },
00385   { 187, PT_SC, ucp_Ethiopic },
00386   { 196, PT_SC, ucp_Georgian },
00387   { 205, PT_SC, ucp_Glagolitic },
00388   { 216, PT_SC, ucp_Gothic },
00389   { 223, PT_SC, ucp_Greek },
00390   { 229, PT_SC, ucp_Gujarati },
00391   { 238, PT_SC, ucp_Gurmukhi },
00392   { 247, PT_SC, ucp_Han },
00393   { 251, PT_SC, ucp_Hangul },
00394   { 258, PT_SC, ucp_Hanunoo },
00395   { 266, PT_SC, ucp_Hebrew },
00396   { 273, PT_SC, ucp_Hiragana },
00397   { 282, PT_SC, ucp_Inherited },
00398   { 292, PT_SC, ucp_Kannada },
00399   { 300, PT_SC, ucp_Katakana },
00400   { 309, PT_SC, ucp_Kayah_Li },
00401   { 318, PT_SC, ucp_Kharoshthi },
00402   { 329, PT_SC, ucp_Khmer },
00403   { 335, PT_GC, ucp_L },
00404   { 337, PT_LAMP, 0 },
00405   { 340, PT_SC, ucp_Lao },
00406   { 344, PT_SC, ucp_Latin },
00407   { 350, PT_SC, ucp_Lepcha },
00408   { 357, PT_SC, ucp_Limbu },
00409   { 363, PT_SC, ucp_Linear_B },
00410   { 372, PT_PC, ucp_Ll },
00411   { 375, PT_PC, ucp_Lm },
00412   { 378, PT_PC, ucp_Lo },
00413   { 381, PT_PC, ucp_Lt },
00414   { 384, PT_PC, ucp_Lu },
00415   { 387, PT_SC, ucp_Lycian },
00416   { 394, PT_SC, ucp_Lydian },
00417   { 401, PT_GC, ucp_M },
00418   { 403, PT_SC, ucp_Malayalam },
00419   { 413, PT_PC, ucp_Mc },
00420   { 416, PT_PC, ucp_Me },
00421   { 419, PT_PC, ucp_Mn },
00422   { 422, PT_SC, ucp_Mongolian },
00423   { 432, PT_SC, ucp_Myanmar },
00424   { 440, PT_GC, ucp_N },
00425   { 442, PT_PC, ucp_Nd },
00426   { 445, PT_SC, ucp_New_Tai_Lue },
00427   { 457, PT_SC, ucp_Nko },
00428   { 461, PT_PC, ucp_Nl },
00429   { 464, PT_PC, ucp_No },
00430   { 467, PT_SC, ucp_Ogham },
00431   { 473, PT_SC, ucp_Ol_Chiki },
00432   { 482, PT_SC, ucp_Old_Italic },
00433   { 493, PT_SC, ucp_Old_Persian },
00434   { 505, PT_SC, ucp_Oriya },
00435   { 511, PT_SC, ucp_Osmanya },
00436   { 519, PT_GC, ucp_P },
00437   { 521, PT_PC, ucp_Pc },
00438   { 524, PT_PC, ucp_Pd },
00439   { 527, PT_PC, ucp_Pe },
00440   { 530, PT_PC, ucp_Pf },
00441   { 533, PT_SC, ucp_Phags_Pa },
00442   { 542, PT_SC, ucp_Phoenician },
00443   { 553, PT_PC, ucp_Pi },
00444   { 556, PT_PC, ucp_Po },
00445   { 559, PT_PC, ucp_Ps },
00446   { 562, PT_SC, ucp_Rejang },
00447   { 569, PT_SC, ucp_Runic },
00448   { 575, PT_GC, ucp_S },
00449   { 577, PT_SC, ucp_Saurashtra },
00450   { 588, PT_PC, ucp_Sc },
00451   { 591, PT_SC, ucp_Shavian },
00452   { 599, PT_SC, ucp_Sinhala },
00453   { 607, PT_PC, ucp_Sk },
00454   { 610, PT_PC, ucp_Sm },
00455   { 613, PT_PC, ucp_So },
00456   { 616, PT_SC, ucp_Sundanese },
00457   { 626, PT_SC, ucp_Syloti_Nagri },
00458   { 639, PT_SC, ucp_Syriac },
00459   { 646, PT_SC, ucp_Tagalog },
00460   { 654, PT_SC, ucp_Tagbanwa },
00461   { 663, PT_SC, ucp_Tai_Le },
00462   { 670, PT_SC, ucp_Tamil },
00463   { 676, PT_SC, ucp_Telugu },
00464   { 683, PT_SC, ucp_Thaana },
00465   { 690, PT_SC, ucp_Thai },
00466   { 695, PT_SC, ucp_Tibetan },
00467   { 703, PT_SC, ucp_Tifinagh },
00468   { 712, PT_SC, ucp_Ugaritic },
00469   { 721, PT_SC, ucp_Vai },
00470   { 725, PT_SC, ucp_Yi },
00471   { 728, PT_GC, ucp_Z },
00472   { 730, PT_PC, ucp_Zl },
00473   { 733, PT_PC, ucp_Zp },
00474   { 736, PT_PC, ucp_Zs }
00475 };
00476 
00477 const int _pcre_utt_size = sizeof(_pcre_utt)/sizeof(ucp_type_table);
00478 
00479 #endif  /* SUPPORT_UTF8 */
00480 
00481 /* End of pcre_tables.c */