dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u8-prev.c
blobf1e893d3a46f7d1ec1d081a013f597fbb1bf4b83
1 /* Iterate over previous character in 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_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start)
26 /* Keep in sync with unistr.h and u8-mbtouc-aux.c. */
27 if (s != start)
29 uint8_t c_1 = s[-1];
31 if (c_1 < 0x80)
33 *puc = c_1;
34 return s - 1;
36 if ((c_1 ^ 0x80) < 0x40)
37 if (s - 1 != start)
39 uint8_t c_2 = s[-2];
41 if (c_2 >= 0xc2 && c_2 < 0xe0)
43 *puc = ((unsigned int) (c_2 & 0x1f) << 6)
44 | (unsigned int) (c_1 ^ 0x80);
45 return s - 2;
47 if ((c_2 ^ 0x80) < 0x40)
48 if (s - 2 != start)
50 uint8_t c_3 = s[-3];
52 if (c_3 >= 0xe0 && c_3 < 0xf0
53 && (c_3 >= 0xe1 || c_2 >= 0xa0)
54 && (c_3 != 0xed || c_2 < 0xa0))
56 *puc = ((unsigned int) (c_3 & 0x0f) << 12)
57 | ((unsigned int) (c_2 ^ 0x80) << 6)
58 | (unsigned int) (c_1 ^ 0x80);
59 return s - 3;
61 if ((c_3 ^ 0x80) < 0x40)
62 if (s - 3 != start)
64 uint8_t c_4 = s[-4];
66 if (c_4 >= 0xf0 && c_4 < 0xf8
67 && (c_4 >= 0xf1 || c_3 >= 0x90)
68 && (c_4 < 0xf4 || (c_4 == 0xf4 && c_3 < 0x90)))
70 *puc = ((unsigned int) (c_4 & 0x07) << 18)
71 | ((unsigned int) (c_3 ^ 0x80) << 12)
72 | ((unsigned int) (c_2 ^ 0x80) << 6)
73 | (unsigned int) (c_1 ^ 0x80);
74 return s - 4;
80 return NULL;