1 /* Look at first character in UTF-8 string, returning an error code.
2 Copyright (C) 1999-2002, 2006-2007, 2009-2013 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2001.
5 This program is free software: you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 u8_mbtoucr (ucs4_t *puc, const uint8_t *s, size_t n)
39 if ((s[1] ^ 0x80) < 0x40)
41 *puc = ((unsigned int) (c & 0x1f) << 6)
42 | (unsigned int) (s[1] ^ 0x80);
45 /* invalid multibyte character */
49 /* incomplete multibyte character */
58 if ((s[1] ^ 0x80) < 0x40
59 && (c >= 0xe1 || s[1] >= 0xa0)
60 && (c != 0xed || s[1] < 0xa0))
64 if ((s[2] ^ 0x80) < 0x40)
66 *puc = ((unsigned int) (c & 0x0f) << 12)
67 | ((unsigned int) (s[1] ^ 0x80) << 6)
68 | (unsigned int) (s[2] ^ 0x80);
71 /* invalid multibyte character */
75 /* incomplete multibyte character */
80 /* invalid multibyte character */
84 /* incomplete multibyte character */
93 if ((s[1] ^ 0x80) < 0x40
94 && (c >= 0xf1 || s[1] >= 0x90)
96 && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90))
102 if ((s[2] ^ 0x80) < 0x40)
106 if ((s[3] ^ 0x80) < 0x40)
108 *puc = ((unsigned int) (c & 0x07) << 18)
109 | ((unsigned int) (s[1] ^ 0x80) << 12)
110 | ((unsigned int) (s[2] ^ 0x80) << 6)
111 | (unsigned int) (s[3] ^ 0x80);
114 /* invalid multibyte character */
118 /* incomplete multibyte character */
123 /* invalid multibyte character */
127 /* incomplete multibyte character */
132 /* invalid multibyte character */
136 /* incomplete multibyte character */
146 if ((s[1] ^ 0x80) < 0x40
147 && (c >= 0xf9 || s[1] >= 0x88))
151 if ((s[2] ^ 0x80) < 0x40)
155 if ((s[3] ^ 0x80) < 0x40)
159 if ((s[4] ^ 0x80) < 0x40)
161 *puc = ((unsigned int) (c & 0x03) << 24)
162 | ((unsigned int) (s[1] ^ 0x80) << 18)
163 | ((unsigned int) (s[2] ^ 0x80) << 12)
164 | ((unsigned int) (s[3] ^ 0x80) << 6)
165 | (unsigned int) (s[4] ^ 0x80);
168 /* invalid multibyte character */
172 /* incomplete multibyte character */
177 /* invalid multibyte character */
181 /* incomplete multibyte character */
186 /* invalid multibyte character */
190 /* incomplete multibyte character */
195 /* invalid multibyte character */
199 /* incomplete multibyte character */
208 if ((s[1] ^ 0x80) < 0x40
209 && (c >= 0xfd || s[1] >= 0x84))
213 if ((s[2] ^ 0x80) < 0x40)
217 if ((s[3] ^ 0x80) < 0x40)
221 if ((s[4] ^ 0x80) < 0x40)
225 if ((s[5] ^ 0x80) < 0x40)
227 *puc = ((unsigned int) (c & 0x01) << 30)
228 | ((unsigned int) (s[1] ^ 0x80) << 24)
229 | ((unsigned int) (s[2] ^ 0x80) << 18)
230 | ((unsigned int) (s[3] ^ 0x80) << 12)
231 | ((unsigned int) (s[4] ^ 0x80) << 6)
232 | (unsigned int) (s[5] ^ 0x80);
235 /* invalid multibyte character */
239 /* incomplete multibyte character */
244 /* invalid multibyte character */
248 /* incomplete multibyte character */
253 /* invalid multibyte character */
257 /* incomplete multibyte character */
262 /* invalid multibyte character */
266 /* incomplete multibyte character */
271 /* invalid multibyte character */
275 /* incomplete multibyte character */
282 /* invalid multibyte character */