2 * UTF-8 utility functions
4 * (c) 2010 Steve Bennett <steveb@workware.net.au>
6 * See LICENCE for licence details.
16 /* This one is always implemented */
17 int utf8_fromunicode(char *p
, unsigned uc
)
23 else if (uc
<= 0x7ff) {
24 *p
++ = 0xc0 | ((uc
& 0x7c0) >> 6);
25 *p
= 0x80 | (uc
& 0x3f);
28 else if (uc
<= 0xffff) {
29 *p
++ = 0xe0 | ((uc
& 0xf000) >> 12);
30 *p
++ = 0x80 | ((uc
& 0xfc0) >> 6);
31 *p
= 0x80 | (uc
& 0x3f);
34 /* Note: We silently truncate to 21 bits here: 0x1fffff */
36 *p
++ = 0xf0 | ((uc
& 0x1c0000) >> 18);
37 *p
++ = 0x80 | ((uc
& 0x3f000) >> 12);
38 *p
++ = 0x80 | ((uc
& 0xfc0) >> 6);
39 *p
= 0x80 | (uc
& 0x3f);
44 #if defined(JIM_UTF8) && !defined(JIM_BOOTSTRAP)
45 int utf8_charlen(int c
)
47 if ((c
& 0x80) == 0) {
50 if ((c
& 0xe0) == 0xc0) {
53 if ((c
& 0xf0) == 0xe0) {
56 if ((c
& 0xf8) == 0xf0) {
59 /* Invalid sequence */
63 int utf8_strlen(const char *str
, int bytelen
)
67 bytelen
= strlen(str
);
71 int l
= utf8_tounicode(str
, &c
);
79 int utf8_index(const char *str
, int index
)
84 s
+= utf8_tounicode(s
, &c
);
89 int utf8_prev_len(const char *str
, int len
)
95 /* Look up to len chars backward for a start-of-char byte */
97 if ((str
[-n
] & 0x80) == 0) {
98 /* Start of a 1-byte char */
101 if ((str
[-n
] & 0xc0) == 0xc0) {
102 /* Start of a multi-byte char */
110 int utf8_tounicode(const char *str
, int *uc
)
112 unsigned const char *s
= (unsigned const char *)str
;
119 if ((s
[1] & 0xc0) == 0x80) {
120 *uc
= ((s
[0] & ~0xc0) << 6) | (s
[1] & ~0x80);
124 else if (s
[0] < 0xf0) {
125 if (((str
[1] & 0xc0) == 0x80) && ((str
[2] & 0xc0) == 0x80)) {
126 *uc
= ((s
[0] & ~0xe0) << 12) | ((s
[1] & ~0x80) << 6) | (s
[2] & ~0x80);
130 else if (s
[0] < 0xf8) {
131 if (((str
[1] & 0xc0) == 0x80) && ((str
[2] & 0xc0) == 0x80) && ((str
[3] & 0xc0) == 0x80)) {
132 *uc
= ((s
[0] & ~0xf0) << 18) | ((s
[1] & ~0x80) << 12) | ((s
[2] & ~0x80) << 6) | (s
[3] & ~0x80);
137 /* Invalid sequence, so just return the byte */
143 unsigned short code
; /* code point */
144 unsigned short altcode
; /* alternate case code point */
147 /* Generated mapping tables */
148 #include "_unicode_mapping.c"
150 #define ARRAYSIZE(A) sizeof(A) / sizeof(*(A))
152 static int cmp_casemap(const void *key
, const void *cm
)
154 return *(int *)key
- (int)((const struct casemap
*)cm
)->code
;
157 static int utf8_map_case(const struct casemap
*mapping
, int num
, int ch
)
159 /* We only support 16 bit case mapping */
161 const struct casemap
*cm
=
162 bsearch(&ch
, mapping
, num
, sizeof(*mapping
), cmp_casemap
);
171 /* Some platforms don't have isascii */
173 #define isascii(C) (!((C) & ~0x7f))
176 int utf8_upper(int ch
)
181 return utf8_map_case(unicode_case_mapping_upper
, ARRAYSIZE(unicode_case_mapping_upper
), ch
);
184 int utf8_lower(int ch
)
189 return utf8_map_case(unicode_case_mapping_lower
, ARRAYSIZE(unicode_case_mapping_lower
), ch
);
192 int utf8_title(int ch
)
194 int newch
= utf8_map_case(unicode_case_mapping_title
, ARRAYSIZE(unicode_case_mapping_title
), ch
);
196 return newch
? newch
: ch
;
198 return utf8_upper(ch
);
201 #endif /* JIM_BOOTSTRAP */