dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u8-check.c
blob1ff42092d055e01ac56ca72affe334746b66822e
1 /* Check UTF-8 string.
2 Copyright (C) 2002, 2006-2007, 2009-2021 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2002.
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 const uint8_t *
24 u8_check (const uint8_t *s, size_t n)
26 const uint8_t *s_end = s + n;
28 while (s < s_end)
30 /* Keep in sync with unistr.h and u8-mbtouc-aux.c. */
31 uint8_t c = *s;
33 if (c < 0x80)
35 s++;
36 continue;
38 if (c >= 0xc2)
40 if (c < 0xe0)
42 if (s + 2 <= s_end
43 && (s[1] ^ 0x80) < 0x40)
45 s += 2;
46 continue;
49 else if (c < 0xf0)
51 if (s + 3 <= s_end
52 && (s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40
53 && (c >= 0xe1 || s[1] >= 0xa0)
54 && (c != 0xed || s[1] < 0xa0))
56 s += 3;
57 continue;
60 else if (c < 0xf8)
62 if (s + 4 <= s_end
63 && (s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40
64 && (s[3] ^ 0x80) < 0x40
65 && (c >= 0xf1 || s[1] >= 0x90)
66 && (c < 0xf4 || (c == 0xf4 && s[1] < 0x90)))
68 s += 4;
69 continue;
73 /* invalid or incomplete multibyte character */
74 return s;
76 return NULL;