/[pcre]/code/trunk/pcre_tables.c
ViewVC logotype

Diff of /code/trunk/pcre_tables.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 507 by ph10, Wed Mar 10 16:08:01 2010 UTC revision 975 by ph10, Sat Jun 2 11:03:06 2012 UTC
# Line 6  Line 6 
6  and semantics are as close as possible to those of the Perl 5 language.  and semantics are as close as possible to those of the Perl 5 language.
7    
8                         Written by Philip Hazel                         Written by Philip Hazel
9             Copyright (c) 1997-2009 University of Cambridge             Copyright (c) 1997-2012 University of Cambridge
10    
11  -----------------------------------------------------------------------------  -----------------------------------------------------------------------------
12  Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
# Line 37  POSSIBILITY OF SUCH DAMAGE. Line 37  POSSIBILITY OF SUCH DAMAGE.
37  -----------------------------------------------------------------------------  -----------------------------------------------------------------------------
38  */  */
39    
40    #ifndef PCRE_INCLUDED
41    
42  /* This module contains some fixed tables that are used by more than one of the  /* This module contains some fixed tables that are used by more than one of the
43  PCRE code modules. The tables are also #included by the pcretest program, which  PCRE code modules. The tables are also #included by the pcretest program, which
# Line 50  clashes with the library. */ Line 51  clashes with the library. */
51    
52  #include "pcre_internal.h"  #include "pcre_internal.h"
53    
54    #endif /* PCRE_INCLUDED */
55    
56  /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that  /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that
57  the definition is next to the definition of the opcodes in pcre_internal.h. */  the definition is next to the definition of the opcodes in pcre_internal.h. */
58    
59  const uschar _pcre_OP_lengths[] = { OP_LENGTHS };  const pcre_uint8 PRIV(OP_lengths)[] = { OP_LENGTHS };
60    
61    
62    
# Line 65  const uschar _pcre_OP_lengths[] = { OP_L Line 67  const uschar _pcre_OP_lengths[] = { OP_L
67  /* These are the breakpoints for different numbers of bytes in a UTF-8  /* These are the breakpoints for different numbers of bytes in a UTF-8
68  character. */  character. */
69    
70  #ifdef SUPPORT_UTF8  #if (defined SUPPORT_UTF && defined COMPILE_PCRE8) \
71      || (defined PCRE_INCLUDED && defined SUPPORT_PCRE16)
72    
73  const int _pcre_utf8_table1[] =  /* These tables are also required by pcretest in 16 bit mode. */
74    
75    const int PRIV(utf8_table1)[] =
76    { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};    { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};
77    
78  const int _pcre_utf8_table1_size = sizeof(_pcre_utf8_table1)/sizeof(int);  const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
79    
80  /* These are the indicator bits and the mask for the data bits to set in the  /* These are the indicator bits and the mask for the data bits to set in the
81  first byte of a character, indexed by the number of additional bytes. */  first byte of a character, indexed by the number of additional bytes. */
82    
83  const int _pcre_utf8_table2[] = { 0,    0xc0, 0xe0, 0xf0, 0xf8, 0xfc};  const int PRIV(utf8_table2)[] = { 0,    0xc0, 0xe0, 0xf0, 0xf8, 0xfc};
84  const int _pcre_utf8_table3[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};  const int PRIV(utf8_table3)[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
85    
86  /* Table of the number of extra bytes, indexed by the first byte masked with  /* Table of the number of extra bytes, indexed by the first byte masked with
87  0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */  0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */
88    
89  const uschar _pcre_utf8_table4[] = {  const pcre_uint8 PRIV(utf8_table4)[] = {
90    1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,    1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
91    1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,    1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
92    2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,    2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
93    3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };    3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
94    
95    #endif /* (SUPPORT_UTF && COMPILE_PCRE8) || (PCRE_INCLUDED && SUPPORT_PCRE16)*/
96    
97    #ifdef SUPPORT_UTF
98    
99  /* Table to translate from particular type value to the general value. */  /* Table to translate from particular type value to the general value. */
100    
101  const int _pcre_ucp_gentype[] = {  const int PRIV(ucp_gentype)[] = {
102    ucp_C, ucp_C, ucp_C, ucp_C, ucp_C,  /* Cc, Cf, Cn, Co, Cs */    ucp_C, ucp_C, ucp_C, ucp_C, ucp_C,  /* Cc, Cf, Cn, Co, Cs */
103    ucp_L, ucp_L, ucp_L, ucp_L, ucp_L,  /* Ll, Lu, Lm, Lo, Lt */    ucp_L, ucp_L, ucp_L, ucp_L, ucp_L,  /* Ll, Lu, Lm, Lo, Lt */
104    ucp_M, ucp_M, ucp_M,                /* Mc, Me, Mn */    ucp_M, ucp_M, ucp_M,                /* Mc, Me, Mn */
# Line 100  const int _pcre_ucp_gentype[] = { Line 109  const int _pcre_ucp_gentype[] = {
109    ucp_Z, ucp_Z, ucp_Z                 /* Zl, Zp, Zs */    ucp_Z, ucp_Z, ucp_Z                 /* Zl, Zp, Zs */
110  };  };
111    
112    #ifdef SUPPORT_JIT
113    /* This table reverses PRIV(ucp_gentype). We can save the cost
114    of a memory load. */
115    
116    const int PRIV(ucp_typerange)[] = {
117      ucp_Cc, ucp_Cs,
118      ucp_Ll, ucp_Lu,
119      ucp_Mc, ucp_Mn,
120      ucp_Nd, ucp_No,
121      ucp_Pc, ucp_Ps,
122      ucp_Sc, ucp_So,
123      ucp_Zl, ucp_Zs,
124    };
125    #endif /* SUPPORT_JIT */
126    
127  /* The pcre_utt[] table below translates Unicode property names into type and  /* The pcre_utt[] table below translates Unicode property names into type and
128  code values. It is searched by binary chop, so must be in collating sequence of  code values. It is searched by binary chop, so must be in collating sequence of
129  name. Originally, the table contained pointers to the name strings in the first  name. Originally, the table contained pointers to the name strings in the first
# Line 110  table itself. Maintenance is more error- Line 134  table itself. Maintenance is more error-
134  data are unlikely.  data are unlikely.
135    
136  July 2008: There is now a script called maint/GenerateUtt.py that can be used  July 2008: There is now a script called maint/GenerateUtt.py that can be used
137  to generate this data instead of maintaining it entirely by hand.  to generate this data automatically instead of maintaining it by hand.
138    
139  The script was updated in March 2009 to generate a new EBCDIC-compliant  The script was updated in March 2009 to generate a new EBCDIC-compliant
140  version. Like all other character and string literals that are compared against  version. Like all other character and string literals that are compared against
# Line 123  strings to make sure that UTF-8 support Line 147  strings to make sure that UTF-8 support
147  #define STRING_Avestan0 STR_A STR_v STR_e STR_s STR_t STR_a STR_n "\0"  #define STRING_Avestan0 STR_A STR_v STR_e STR_s STR_t STR_a STR_n "\0"
148  #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"  #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"
149  #define STRING_Bamum0 STR_B STR_a STR_m STR_u STR_m "\0"  #define STRING_Bamum0 STR_B STR_a STR_m STR_u STR_m "\0"
150    #define STRING_Batak0 STR_B STR_a STR_t STR_a STR_k "\0"
151  #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"  #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"
152  #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"  #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"
153    #define STRING_Brahmi0 STR_B STR_r STR_a STR_h STR_m STR_i "\0"
154  #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"  #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"
155  #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"  #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"
156  #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"  #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"
# Line 133  strings to make sure that UTF-8 support Line 159  strings to make sure that UTF-8 support
159  #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"  #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"
160  #define STRING_Cc0 STR_C STR_c "\0"  #define STRING_Cc0 STR_C STR_c "\0"
161  #define STRING_Cf0 STR_C STR_f "\0"  #define STRING_Cf0 STR_C STR_f "\0"
162    #define STRING_Chakma0 STR_C STR_h STR_a STR_k STR_m STR_a "\0"
163  #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"  #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"
164  #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"  #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"
165  #define STRING_Cn0 STR_C STR_n "\0"  #define STRING_Cn0 STR_C STR_n "\0"
# Line 186  strings to make sure that UTF-8 support Line 213  strings to make sure that UTF-8 support
213  #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"  #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"
214  #define STRING_M0 STR_M "\0"  #define STRING_M0 STR_M "\0"
215  #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"  #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"
216    #define STRING_Mandaic0 STR_M STR_a STR_n STR_d STR_a STR_i STR_c "\0"
217  #define STRING_Mc0 STR_M STR_c "\0"  #define STRING_Mc0 STR_M STR_c "\0"
218  #define STRING_Me0 STR_M STR_e "\0"  #define STRING_Me0 STR_M STR_e "\0"
219  #define STRING_Meetei_Mayek0 STR_M STR_e STR_e STR_t STR_e STR_i STR_UNDERSCORE STR_M STR_a STR_y STR_e STR_k "\0"  #define STRING_Meetei_Mayek0 STR_M STR_e STR_e STR_t STR_e STR_i STR_UNDERSCORE STR_M STR_a STR_y STR_e STR_k "\0"
220    #define STRING_Meroitic_Cursive0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_C STR_u STR_r STR_s STR_i STR_v STR_e "\0"
221    #define STRING_Meroitic_Hieroglyphs0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
222    #define STRING_Miao0 STR_M STR_i STR_a STR_o "\0"
223  #define STRING_Mn0 STR_M STR_n "\0"  #define STRING_Mn0 STR_M STR_n "\0"
224  #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"  #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"
225  #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"  #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"
# Line 222  strings to make sure that UTF-8 support Line 253  strings to make sure that UTF-8 support
253  #define STRING_Samaritan0 STR_S STR_a STR_m STR_a STR_r STR_i STR_t STR_a STR_n "\0"  #define STRING_Samaritan0 STR_S STR_a STR_m STR_a STR_r STR_i STR_t STR_a STR_n "\0"
254  #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"  #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"
255  #define STRING_Sc0 STR_S STR_c "\0"  #define STRING_Sc0 STR_S STR_c "\0"
256    #define STRING_Sharada0 STR_S STR_h STR_a STR_r STR_a STR_d STR_a "\0"
257  #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"  #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"
258  #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"  #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"
259  #define STRING_Sk0 STR_S STR_k "\0"  #define STRING_Sk0 STR_S STR_k "\0"
260  #define STRING_Sm0 STR_S STR_m "\0"  #define STRING_Sm0 STR_S STR_m "\0"
261  #define STRING_So0 STR_S STR_o "\0"  #define STRING_So0 STR_S STR_o "\0"
262    #define STRING_Sora_Sompeng0 STR_S STR_o STR_r STR_a STR_UNDERSCORE STR_S STR_o STR_m STR_p STR_e STR_n STR_g "\0"
263  #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"  #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"
264  #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"  #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"
265  #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"  #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"
# Line 235  strings to make sure that UTF-8 support Line 268  strings to make sure that UTF-8 support
268  #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"  #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"
269  #define STRING_Tai_Tham0 STR_T STR_a STR_i STR_UNDERSCORE STR_T STR_h STR_a STR_m "\0"  #define STRING_Tai_Tham0 STR_T STR_a STR_i STR_UNDERSCORE STR_T STR_h STR_a STR_m "\0"
270  #define STRING_Tai_Viet0 STR_T STR_a STR_i STR_UNDERSCORE STR_V STR_i STR_e STR_t "\0"  #define STRING_Tai_Viet0 STR_T STR_a STR_i STR_UNDERSCORE STR_V STR_i STR_e STR_t "\0"
271    #define STRING_Takri0 STR_T STR_a STR_k STR_r STR_i "\0"
272  #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"  #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"
273  #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"  #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"
274  #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"  #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"
# Line 243  strings to make sure that UTF-8 support Line 277  strings to make sure that UTF-8 support
277  #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"  #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"
278  #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"  #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"
279  #define STRING_Vai0 STR_V STR_a STR_i "\0"  #define STRING_Vai0 STR_V STR_a STR_i "\0"
280    #define STRING_Xan0 STR_X STR_a STR_n "\0"
281    #define STRING_Xps0 STR_X STR_p STR_s "\0"
282    #define STRING_Xsp0 STR_X STR_s STR_p "\0"
283    #define STRING_Xwd0 STR_X STR_w STR_d "\0"
284  #define STRING_Yi0 STR_Y STR_i "\0"  #define STRING_Yi0 STR_Y STR_i "\0"
285  #define STRING_Z0 STR_Z "\0"  #define STRING_Z0 STR_Z "\0"
286  #define STRING_Zl0 STR_Z STR_l "\0"  #define STRING_Zl0 STR_Z STR_l "\0"
287  #define STRING_Zp0 STR_Z STR_p "\0"  #define STRING_Zp0 STR_Z STR_p "\0"
288  #define STRING_Zs0 STR_Z STR_s "\0"  #define STRING_Zs0 STR_Z STR_s "\0"
289    
290  const char _pcre_utt_names[] =  const char PRIV(utt_names)[] =
291    STRING_Any0    STRING_Any0
292    STRING_Arabic0    STRING_Arabic0
293    STRING_Armenian0    STRING_Armenian0
294    STRING_Avestan0    STRING_Avestan0
295    STRING_Balinese0    STRING_Balinese0
296    STRING_Bamum0    STRING_Bamum0
297      STRING_Batak0
298    STRING_Bengali0    STRING_Bengali0
299    STRING_Bopomofo0    STRING_Bopomofo0
300      STRING_Brahmi0
301    STRING_Braille0    STRING_Braille0
302    STRING_Buginese0    STRING_Buginese0
303    STRING_Buhid0    STRING_Buhid0
# Line 266  const char _pcre_utt_names[] = Line 306  const char _pcre_utt_names[] =
306    STRING_Carian0    STRING_Carian0
307    STRING_Cc0    STRING_Cc0
308    STRING_Cf0    STRING_Cf0
309      STRING_Chakma0
310    STRING_Cham0    STRING_Cham0
311    STRING_Cherokee0    STRING_Cherokee0
312    STRING_Cn0    STRING_Cn0
# Line 319  const char _pcre_utt_names[] = Line 360  const char _pcre_utt_names[] =
360    STRING_Lydian0    STRING_Lydian0
361    STRING_M0    STRING_M0
362    STRING_Malayalam0    STRING_Malayalam0
363      STRING_Mandaic0
364    STRING_Mc0    STRING_Mc0
365    STRING_Me0    STRING_Me0
366    STRING_Meetei_Mayek0    STRING_Meetei_Mayek0
367      STRING_Meroitic_Cursive0
368      STRING_Meroitic_Hieroglyphs0
369      STRING_Miao0
370    STRING_Mn0    STRING_Mn0
371    STRING_Mongolian0    STRING_Mongolian0
372    STRING_Myanmar0    STRING_Myanmar0
# Line 355  const char _pcre_utt_names[] = Line 400  const char _pcre_utt_names[] =
400    STRING_Samaritan0    STRING_Samaritan0
401    STRING_Saurashtra0    STRING_Saurashtra0
402    STRING_Sc0    STRING_Sc0
403      STRING_Sharada0
404    STRING_Shavian0    STRING_Shavian0
405    STRING_Sinhala0    STRING_Sinhala0
406    STRING_Sk0    STRING_Sk0
407    STRING_Sm0    STRING_Sm0
408    STRING_So0    STRING_So0
409      STRING_Sora_Sompeng0
410    STRING_Sundanese0    STRING_Sundanese0
411    STRING_Syloti_Nagri0    STRING_Syloti_Nagri0
412    STRING_Syriac0    STRING_Syriac0
# Line 368  const char _pcre_utt_names[] = Line 415  const char _pcre_utt_names[] =
415    STRING_Tai_Le0    STRING_Tai_Le0
416    STRING_Tai_Tham0    STRING_Tai_Tham0
417    STRING_Tai_Viet0    STRING_Tai_Viet0
418      STRING_Takri0
419    STRING_Tamil0    STRING_Tamil0
420    STRING_Telugu0    STRING_Telugu0
421    STRING_Thaana0    STRING_Thaana0
# Line 376  const char _pcre_utt_names[] = Line 424  const char _pcre_utt_names[] =
424    STRING_Tifinagh0    STRING_Tifinagh0
425    STRING_Ugaritic0    STRING_Ugaritic0
426    STRING_Vai0    STRING_Vai0
427      STRING_Xan0
428      STRING_Xps0
429      STRING_Xsp0
430      STRING_Xwd0
431    STRING_Yi0    STRING_Yi0
432    STRING_Z0    STRING_Z0
433    STRING_Zl0    STRING_Zl0
434    STRING_Zp0    STRING_Zp0
435    STRING_Zs0;    STRING_Zs0;
436    
437  const ucp_type_table _pcre_utt[] = {  const ucp_type_table PRIV(utt)[] = {
438    {   0, PT_ANY, 0 },    {   0, PT_ANY, 0 },
439    {   4, PT_SC, ucp_Arabic },    {   4, PT_SC, ucp_Arabic },
440    {  11, PT_SC, ucp_Armenian },    {  11, PT_SC, ucp_Armenian },
441    {  20, PT_SC, ucp_Avestan },    {  20, PT_SC, ucp_Avestan },
442    {  28, PT_SC, ucp_Balinese },    {  28, PT_SC, ucp_Balinese },
443    {  37, PT_SC, ucp_Bamum },    {  37, PT_SC, ucp_Bamum },
444    {  43, PT_SC, ucp_Bengali },    {  43, PT_SC, ucp_Batak },
445    {  51, PT_SC, ucp_Bopomofo },    {  49, PT_SC, ucp_Bengali },
446    {  60, PT_SC, ucp_Braille },    {  57, PT_SC, ucp_Bopomofo },
447    {  68, PT_SC, ucp_Buginese },    {  66, PT_SC, ucp_Brahmi },
448    {  77, PT_SC, ucp_Buhid },    {  73, PT_SC, ucp_Braille },
449    {  83, PT_GC, ucp_C },    {  81, PT_SC, ucp_Buginese },
450    {  85, PT_SC, ucp_Canadian_Aboriginal },    {  90, PT_SC, ucp_Buhid },
451    { 105, PT_SC, ucp_Carian },    {  96, PT_GC, ucp_C },
452    { 112, PT_PC, ucp_Cc },    {  98, PT_SC, ucp_Canadian_Aboriginal },
453    { 115, PT_PC, ucp_Cf },    { 118, PT_SC, ucp_Carian },
454    { 118, PT_SC, ucp_Cham },    { 125, PT_PC, ucp_Cc },
455    { 123, PT_SC, ucp_Cherokee },    { 128, PT_PC, ucp_Cf },
456    { 132, PT_PC, ucp_Cn },    { 131, PT_SC, ucp_Chakma },
457    { 135, PT_PC, ucp_Co },    { 138, PT_SC, ucp_Cham },
458    { 138, PT_SC, ucp_Common },    { 143, PT_SC, ucp_Cherokee },
459    { 145, PT_SC, ucp_Coptic },    { 152, PT_PC, ucp_Cn },
460    { 152, PT_PC, ucp_Cs },    { 155, PT_PC, ucp_Co },
461    { 155, PT_SC, ucp_Cuneiform },    { 158, PT_SC, ucp_Common },
462    { 165, PT_SC, ucp_Cypriot },    { 165, PT_SC, ucp_Coptic },
463    { 173, PT_SC, ucp_Cyrillic },    { 172, PT_PC, ucp_Cs },
464    { 182, PT_SC, ucp_Deseret },    { 175, PT_SC, ucp_Cuneiform },
465    { 190, PT_SC, ucp_Devanagari },    { 185, PT_SC, ucp_Cypriot },
466    { 201, PT_SC, ucp_Egyptian_Hieroglyphs },    { 193, PT_SC, ucp_Cyrillic },
467    { 222, PT_SC, ucp_Ethiopic },    { 202, PT_SC, ucp_Deseret },
468    { 231, PT_SC, ucp_Georgian },    { 210, PT_SC, ucp_Devanagari },
469    { 240, PT_SC, ucp_Glagolitic },    { 221, PT_SC, ucp_Egyptian_Hieroglyphs },
470    { 251, PT_SC, ucp_Gothic },    { 242, PT_SC, ucp_Ethiopic },
471    { 258, PT_SC, ucp_Greek },    { 251, PT_SC, ucp_Georgian },
472    { 264, PT_SC, ucp_Gujarati },    { 260, PT_SC, ucp_Glagolitic },
473    { 273, PT_SC, ucp_Gurmukhi },    { 271, PT_SC, ucp_Gothic },
474    { 282, PT_SC, ucp_Han },    { 278, PT_SC, ucp_Greek },
475    { 286, PT_SC, ucp_Hangul },    { 284, PT_SC, ucp_Gujarati },
476    { 293, PT_SC, ucp_Hanunoo },    { 293, PT_SC, ucp_Gurmukhi },
477    { 301, PT_SC, ucp_Hebrew },    { 302, PT_SC, ucp_Han },
478    { 308, PT_SC, ucp_Hiragana },    { 306, PT_SC, ucp_Hangul },
479    { 317, PT_SC, ucp_Imperial_Aramaic },    { 313, PT_SC, ucp_Hanunoo },
480    { 334, PT_SC, ucp_Inherited },    { 321, PT_SC, ucp_Hebrew },
481    { 344, PT_SC, ucp_Inscriptional_Pahlavi },    { 328, PT_SC, ucp_Hiragana },
482    { 366, PT_SC, ucp_Inscriptional_Parthian },    { 337, PT_SC, ucp_Imperial_Aramaic },
483    { 389, PT_SC, ucp_Javanese },    { 354, PT_SC, ucp_Inherited },
484    { 398, PT_SC, ucp_Kaithi },    { 364, PT_SC, ucp_Inscriptional_Pahlavi },
485    { 405, PT_SC, ucp_Kannada },    { 386, PT_SC, ucp_Inscriptional_Parthian },
486    { 413, PT_SC, ucp_Katakana },    { 409, PT_SC, ucp_Javanese },
487    { 422, PT_SC, ucp_Kayah_Li },    { 418, PT_SC, ucp_Kaithi },
488    { 431, PT_SC, ucp_Kharoshthi },    { 425, PT_SC, ucp_Kannada },
489    { 442, PT_SC, ucp_Khmer },    { 433, PT_SC, ucp_Katakana },
490    { 448, PT_GC, ucp_L },    { 442, PT_SC, ucp_Kayah_Li },
491    { 450, PT_LAMP, 0 },    { 451, PT_SC, ucp_Kharoshthi },
492    { 453, PT_SC, ucp_Lao },    { 462, PT_SC, ucp_Khmer },
493    { 457, PT_SC, ucp_Latin },    { 468, PT_GC, ucp_L },
494    { 463, PT_SC, ucp_Lepcha },    { 470, PT_LAMP, 0 },
495    { 470, PT_SC, ucp_Limbu },    { 473, PT_SC, ucp_Lao },
496    { 476, PT_SC, ucp_Linear_B },    { 477, PT_SC, ucp_Latin },
497    { 485, PT_SC, ucp_Lisu },    { 483, PT_SC, ucp_Lepcha },
498    { 490, PT_PC, ucp_Ll },    { 490, PT_SC, ucp_Limbu },
499    { 493, PT_PC, ucp_Lm },    { 496, PT_SC, ucp_Linear_B },
500    { 496, PT_PC, ucp_Lo },    { 505, PT_SC, ucp_Lisu },
501    { 499, PT_PC, ucp_Lt },    { 510, PT_PC, ucp_Ll },
502    { 502, PT_PC, ucp_Lu },    { 513, PT_PC, ucp_Lm },
503    { 505, PT_SC, ucp_Lycian },    { 516, PT_PC, ucp_Lo },
504    { 512, PT_SC, ucp_Lydian },    { 519, PT_PC, ucp_Lt },
505    { 519, PT_GC, ucp_M },    { 522, PT_PC, ucp_Lu },
506    { 521, PT_SC, ucp_Malayalam },    { 525, PT_SC, ucp_Lycian },
507    { 531, PT_PC, ucp_Mc },    { 532, PT_SC, ucp_Lydian },
508    { 534, PT_PC, ucp_Me },    { 539, PT_GC, ucp_M },
509    { 537, PT_SC, ucp_Meetei_Mayek },    { 541, PT_SC, ucp_Malayalam },
510    { 550, PT_PC, ucp_Mn },    { 551, PT_SC, ucp_Mandaic },
511    { 553, PT_SC, ucp_Mongolian },    { 559, PT_PC, ucp_Mc },
512    { 563, PT_SC, ucp_Myanmar },    { 562, PT_PC, ucp_Me },
513    { 571, PT_GC, ucp_N },    { 565, PT_SC, ucp_Meetei_Mayek },
514    { 573, PT_PC, ucp_Nd },    { 578, PT_SC, ucp_Meroitic_Cursive },
515    { 576, PT_SC, ucp_New_Tai_Lue },    { 595, PT_SC, ucp_Meroitic_Hieroglyphs },
516    { 588, PT_SC, ucp_Nko },    { 616, PT_SC, ucp_Miao },
517    { 592, PT_PC, ucp_Nl },    { 621, PT_PC, ucp_Mn },
518    { 595, PT_PC, ucp_No },    { 624, PT_SC, ucp_Mongolian },
519    { 598, PT_SC, ucp_Ogham },    { 634, PT_SC, ucp_Myanmar },
520    { 604, PT_SC, ucp_Ol_Chiki },    { 642, PT_GC, ucp_N },
521    { 613, PT_SC, ucp_Old_Italic },    { 644, PT_PC, ucp_Nd },
522    { 624, PT_SC, ucp_Old_Persian },    { 647, PT_SC, ucp_New_Tai_Lue },
523    { 636, PT_SC, ucp_Old_South_Arabian },    { 659, PT_SC, ucp_Nko },
524    { 654, PT_SC, ucp_Old_Turkic },    { 663, PT_PC, ucp_Nl },
525    { 665, PT_SC, ucp_Oriya },    { 666, PT_PC, ucp_No },
526    { 671, PT_SC, ucp_Osmanya },    { 669, PT_SC, ucp_Ogham },
527    { 679, PT_GC, ucp_P },    { 675, PT_SC, ucp_Ol_Chiki },
528    { 681, PT_PC, ucp_Pc },    { 684, PT_SC, ucp_Old_Italic },
529    { 684, PT_PC, ucp_Pd },    { 695, PT_SC, ucp_Old_Persian },
530    { 687, PT_PC, ucp_Pe },    { 707, PT_SC, ucp_Old_South_Arabian },
531    { 690, PT_PC, ucp_Pf },    { 725, PT_SC, ucp_Old_Turkic },
532    { 693, PT_SC, ucp_Phags_Pa },    { 736, PT_SC, ucp_Oriya },
533    { 702, PT_SC, ucp_Phoenician },    { 742, PT_SC, ucp_Osmanya },
534    { 713, PT_PC, ucp_Pi },    { 750, PT_GC, ucp_P },
535    { 716, PT_PC, ucp_Po },    { 752, PT_PC, ucp_Pc },
536    { 719, PT_PC, ucp_Ps },    { 755, PT_PC, ucp_Pd },
537    { 722, PT_SC, ucp_Rejang },    { 758, PT_PC, ucp_Pe },
538    { 729, PT_SC, ucp_Runic },    { 761, PT_PC, ucp_Pf },
539    { 735, PT_GC, ucp_S },    { 764, PT_SC, ucp_Phags_Pa },
540    { 737, PT_SC, ucp_Samaritan },    { 773, PT_SC, ucp_Phoenician },
541    { 747, PT_SC, ucp_Saurashtra },    { 784, PT_PC, ucp_Pi },
542    { 758, PT_PC, ucp_Sc },    { 787, PT_PC, ucp_Po },
543    { 761, PT_SC, ucp_Shavian },    { 790, PT_PC, ucp_Ps },
544    { 769, PT_SC, ucp_Sinhala },    { 793, PT_SC, ucp_Rejang },
545    { 777, PT_PC, ucp_Sk },    { 800, PT_SC, ucp_Runic },
546    { 780, PT_PC, ucp_Sm },    { 806, PT_GC, ucp_S },
547    { 783, PT_PC, ucp_So },    { 808, PT_SC, ucp_Samaritan },
548    { 786, PT_SC, ucp_Sundanese },    { 818, PT_SC, ucp_Saurashtra },
549    { 796, PT_SC, ucp_Syloti_Nagri },    { 829, PT_PC, ucp_Sc },
550    { 809, PT_SC, ucp_Syriac },    { 832, PT_SC, ucp_Sharada },
551    { 816, PT_SC, ucp_Tagalog },    { 840, PT_SC, ucp_Shavian },
552    { 824, PT_SC, ucp_Tagbanwa },    { 848, PT_SC, ucp_Sinhala },
553    { 833, PT_SC, ucp_Tai_Le },    { 856, PT_PC, ucp_Sk },
554    { 840, PT_SC, ucp_Tai_Tham },    { 859, PT_PC, ucp_Sm },
555    { 849, PT_SC, ucp_Tai_Viet },    { 862, PT_PC, ucp_So },
556    { 858, PT_SC, ucp_Tamil },    { 865, PT_SC, ucp_Sora_Sompeng },
557    { 864, PT_SC, ucp_Telugu },    { 878, PT_SC, ucp_Sundanese },
558    { 871, PT_SC, ucp_Thaana },    { 888, PT_SC, ucp_Syloti_Nagri },
559    { 878, PT_SC, ucp_Thai },    { 901, PT_SC, ucp_Syriac },
560    { 883, PT_SC, ucp_Tibetan },    { 908, PT_SC, ucp_Tagalog },
561    { 891, PT_SC, ucp_Tifinagh },    { 916, PT_SC, ucp_Tagbanwa },
562    { 900, PT_SC, ucp_Ugaritic },    { 925, PT_SC, ucp_Tai_Le },
563    { 909, PT_SC, ucp_Vai },    { 932, PT_SC, ucp_Tai_Tham },
564    { 913, PT_SC, ucp_Yi },    { 941, PT_SC, ucp_Tai_Viet },
565    { 916, PT_GC, ucp_Z },    { 950, PT_SC, ucp_Takri },
566    { 918, PT_PC, ucp_Zl },    { 956, PT_SC, ucp_Tamil },
567    { 921, PT_PC, ucp_Zp },    { 962, PT_SC, ucp_Telugu },
568    { 924, PT_PC, ucp_Zs }    { 969, PT_SC, ucp_Thaana },
569      { 976, PT_SC, ucp_Thai },
570      { 981, PT_SC, ucp_Tibetan },
571      { 989, PT_SC, ucp_Tifinagh },
572      { 998, PT_SC, ucp_Ugaritic },
573      { 1007, PT_SC, ucp_Vai },
574      { 1011, PT_ALNUM, 0 },
575      { 1015, PT_PXSPACE, 0 },
576      { 1019, PT_SPACE, 0 },
577      { 1023, PT_WORD, 0 },
578      { 1027, PT_SC, ucp_Yi },
579      { 1030, PT_GC, ucp_Z },
580      { 1032, PT_PC, ucp_Zl },
581      { 1035, PT_PC, ucp_Zp },
582      { 1038, PT_PC, ucp_Zs }
583  };  };
584    
585  const int _pcre_utt_size = sizeof(_pcre_utt)/sizeof(ucp_type_table);  const int PRIV(utt_size) = sizeof(PRIV(utt)) / sizeof(ucp_type_table);
586    
587  #endif  /* SUPPORT_UTF8 */  #endif /* SUPPORT_UTF */
588    
589  /* End of pcre_tables.c */  /* End of pcre_tables.c */

Legend:
Removed from v.507  
changed lines
  Added in v.975

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12