Commit | Line | Data |
a0ed51b3 |
1 | /* utf8.h |
2 | * |
4eb8286e |
3 | * Copyright (c) 1998-1999, Larry Wall |
a0ed51b3 |
4 | * |
5 | * You may distribute under the terms of either the GNU General Public |
6 | * License or the Artistic License, as specified in the README file. |
7 | * |
8 | */ |
9 | |
73c4f7a1 |
10 | START_EXTERN_C |
11 | |
a0ed51b3 |
12 | #ifdef DOINIT |
6f06b55f |
13 | EXTCONST unsigned char PL_utf8skip[] = { |
a0ed51b3 |
14 | 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, /* ascii */ |
15 | 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, /* ascii */ |
16 | 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, /* ascii */ |
17 | 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, /* ascii */ |
18 | 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, /* bogus */ |
19 | 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, /* bogus */ |
20 | 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, /* scripts */ |
21 | 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,7,8, /* cjk etc. */ |
22 | }; |
23 | #else |
6f06b55f |
24 | EXTCONST unsigned char PL_utf8skip[]; |
a0ed51b3 |
25 | #endif |
26 | |
73c4f7a1 |
27 | END_EXTERN_C |
28 | |
e24b16f9 |
29 | #define IN_UTF8 (PL_curcop->op_private & HINT_UTF8) |
a0ed51b3 |
30 | |
6f06b55f |
31 | #define UTF8SKIP(s) PL_utf8skip[*(U8*)s] |