| 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-2006 University of Cambridge |
Copyright (c) 1997-2007 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 |
| 44 |
clashes with the library. */ |
clashes with the library. */ |
| 45 |
|
|
| 46 |
|
|
| 47 |
|
#ifdef HAVE_CONFIG_H |
| 48 |
|
#include "config.h" |
| 49 |
|
#endif |
| 50 |
|
|
| 51 |
#include "pcre_internal.h" |
#include "pcre_internal.h" |
| 52 |
|
|
| 53 |
|
|
| 65 |
/* 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 |
| 66 |
character. */ |
character. */ |
| 67 |
|
|
| 68 |
|
#ifdef SUPPORT_UTF8 |
| 69 |
|
|
| 70 |
const int _pcre_utf8_table1[] = |
const int _pcre_utf8_table1[] = |
| 71 |
{ 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff}; |
{ 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff}; |
| 72 |
|
|
| 200 |
|
|
| 201 |
const int _pcre_utt_size = sizeof(_pcre_utt)/sizeof(ucp_type_table); |
const int _pcre_utt_size = sizeof(_pcre_utt)/sizeof(ucp_type_table); |
| 202 |
|
|
| 203 |
|
#endif /* SUPPORT_UTF8 */ |
| 204 |
|
|
| 205 |
/* End of pcre_tables.c */ |
/* End of pcre_tables.c */ |