dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u8-mbtouc.c
blob82a12ce77f43877a5e8644badd13efaaa7c1bb51
1 /* Look at first character in UTF-8 string.
2 Copyright (C) 1999-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 #if defined IN_LIBUNISTRING
21 /* Tell unistr.h to declare u8_mbtouc as 'extern', not 'static inline'. */
22 # include "unistring-notinline.h"
23 #endif
25 /* Specification. */
26 #include "unistr.h"
28 #if !HAVE_INLINE
30 int
31 u8_mbtouc (ucs4_t *puc, const uint8_t *s, size_t n)
33 uint8_t c = *s;
35 if (c < 0x80)
37 *puc = c;
38 return 1;
40 else if (c >= 0xc2)
42 if (c < 0xe0)
44 if (n >= 2)
46 if ((s[1] ^ 0x80) < 0x40)
48 *puc = ((unsigned int) (c & 0x1f) << 6)
49 | (unsigned int) (s[1] ^ 0x80);
50 return 2;
52 /* invalid multibyte character */
54 else
56 /* incomplete multibyte character */
57 *puc = 0xfffd;
58 return 1;
61 else if (c < 0xf0)
63 if (n >= 3)
65 if ((s[1] ^ 0x80) < 0x40)
67 if ((s[2] ^ 0x80) < 0x40)
69 if ((c >= 0xe1 || s[1] >= 0xa0)
70 && (c != 0xed || s[1] < 0xa0))
72 *puc = ((unsigned int) (c & 0x0f) << 12)
73 | ((unsigned int) (s[1] ^ 0x80) << 6)
74 | (unsigned int) (s[2] ^ 0x80);
75 return 3;
77 /* invalid multibyte character */
78 *puc = 0xfffd;
79 return 3;
81 /* invalid multibyte character */
82 *puc = 0xfffd;
83 return 2;
85 /* invalid multibyte character */
87 else
89 /* incomplete multibyte character */
90 *puc = 0xfffd;
91 if (n == 1 || (s[1] ^ 0x80) >= 0x40)
92 return 1;
93 else
94 return 2;
97 else if (c < 0xf8)
99 if (n >= 4)
101 if ((s[1] ^ 0x80) < 0x40)
103 if ((s[2] ^ 0x80) < 0x40)
105 if ((s[3] ^ 0x80) < 0x40)
107 if ((c >= 0xf1 || s[1] >= 0x90)
108 && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90)))
110 *puc = ((unsigned int) (c & 0x07) << 18)
111 | ((unsigned int) (s[1] ^ 0x80) << 12)
112 | ((unsigned int) (s[2] ^ 0x80) << 6)
113 | (unsigned int) (s[3] ^ 0x80);
114 return 4;
116 /* invalid multibyte character */
117 *puc = 0xfffd;
118 return 4;
120 /* invalid multibyte character */
121 *puc = 0xfffd;
122 return 3;
124 /* invalid multibyte character */
125 *puc = 0xfffd;
126 return 2;
128 /* invalid multibyte character */
130 else
132 /* incomplete multibyte character */
133 *puc = 0xfffd;
134 if (n == 1 || (s[1] ^ 0x80) >= 0x40)
135 return 1;
136 else if (n == 2 || (s[2] ^ 0x80) >= 0x40)
137 return 2;
138 else
139 return 3;
143 /* invalid multibyte character */
144 *puc = 0xfffd;
145 return 1;
148 #endif