dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u16-chr.c
blobb6c90173794bc4c3a98c21729ece0d0ecbb35e39
1 /* Search character in piece of UTF-16 string.
2 Copyright (C) 1999, 2002, 2006-2007, 2009-2021 Free Software Foundation,
3 Inc.
4 Written by Bruno Haible <bruno@clisp.org>, 2002.
6 This program is free software: you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 #include <config.h>
21 /* Specification. */
22 #include "unistr.h"
24 uint16_t *
25 u16_chr (const uint16_t *s, size_t n, ucs4_t uc)
27 uint16_t c[2];
29 if (uc < 0x10000)
31 uint16_t c0 = uc;
33 for (; n > 0; s++, n--)
35 if (*s == c0)
36 return (uint16_t *) s;
39 else
40 switch (u16_uctomb_aux (c, uc, 2))
42 case 2:
43 if (n > 1)
45 uint16_t c0 = c[0];
46 uint16_t c1 = c[1];
48 for (n--; n > 0; s++, n--)
50 if (*s == c0 && s[1] == c1)
51 return (uint16_t *) s;
54 break;
56 return NULL;