dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u8-mbtouc-unsafe-aux.c
blob24707264cd632f55c0c6c1219c700a6518f22fe0
1 /* Conversion UTF-8 to UCS-4.
2 Copyright (C) 2001-2002, 2006-2007, 2009-2021 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 Lesser 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #include <config.h>
20 /* Specification. */
21 #include "unistr.h"
23 #if defined IN_LIBUNISTRING || HAVE_INLINE
25 int
26 u8_mbtouc_unsafe_aux (ucs4_t *puc, const uint8_t *s, size_t n)
28 uint8_t c = *s;
30 if (c >= 0xc2)
32 if (c < 0xe0)
34 if (n >= 2)
36 if ((s[1] ^ 0x80) < 0x40)
38 *puc = ((unsigned int) (c & 0x1f) << 6)
39 | (unsigned int) (s[1] ^ 0x80);
40 return 2;
42 /* invalid multibyte character */
44 else
46 /* incomplete multibyte character */
47 *puc = 0xfffd;
48 return 1;
51 else if (c < 0xf0)
53 if (n >= 3)
55 if ((s[1] ^ 0x80) < 0x40)
57 if ((s[2] ^ 0x80) < 0x40)
59 if ((c >= 0xe1 || s[1] >= 0xa0)
60 && (c != 0xed || s[1] < 0xa0))
62 *puc = ((unsigned int) (c & 0x0f) << 12)
63 | ((unsigned int) (s[1] ^ 0x80) << 6)
64 | (unsigned int) (s[2] ^ 0x80);
65 return 3;
67 /* invalid multibyte character */
68 *puc = 0xfffd;
69 return 3;
71 /* invalid multibyte character */
72 *puc = 0xfffd;
73 return 2;
75 /* invalid multibyte character */
77 else
79 /* incomplete multibyte character */
80 *puc = 0xfffd;
81 if (n == 1 || (s[1] ^ 0x80) >= 0x40)
82 return 1;
83 else
84 return 2;
87 else if (c < 0xf8)
89 if (n >= 4)
91 if ((s[1] ^ 0x80) < 0x40)
93 if ((s[2] ^ 0x80) < 0x40)
95 if ((s[3] ^ 0x80) < 0x40)
97 if ((c >= 0xf1 || s[1] >= 0x90)
98 && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90))
101 *puc = ((unsigned int) (c & 0x07) << 18)
102 | ((unsigned int) (s[1] ^ 0x80) << 12)
103 | ((unsigned int) (s[2] ^ 0x80) << 6)
104 | (unsigned int) (s[3] ^ 0x80);
105 return 4;
107 /* invalid multibyte character */
108 *puc = 0xfffd;
109 return 4;
111 /* invalid multibyte character */
112 *puc = 0xfffd;
113 return 3;
115 /* invalid multibyte character */
116 *puc = 0xfffd;
117 return 2;
119 /* invalid multibyte character */
121 else
123 /* incomplete multibyte character */
124 *puc = 0xfffd;
125 if (n == 1 || (s[1] ^ 0x80) >= 0x40)
126 return 1;
127 else if (n == 2 || (s[2] ^ 0x80) >= 0x40)
128 return 2;
129 else
130 return 3;
134 /* invalid multibyte character */
135 *puc = 0xfffd;
136 return 1;
139 #endif