exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / mbschr.c
bloba5f6e386231ba8a01b06d07f63ec5d0844aa7bd1
1 /* Searching a string for a character.
2 Copyright (C) 2007-2024 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2007.
5 This file is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation, either version 3 of the
8 License, or (at your option) any later version.
10 This file 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
13 GNU 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 <string.h>
23 #include <stdlib.h>
25 #if GNULIB_MCEL_PREFER
26 # include "mcel.h"
27 #else
28 # include "mbuiterf.h"
29 #endif
31 /* Locate the first single-byte character C in the character string STRING,
32 and return a pointer to it. Return NULL if C is not found in STRING. */
33 char *
34 mbschr (const char *string, int c)
36 if (MB_CUR_MAX > 1
37 /* Optimization: We know that ASCII characters < 0x30 don't occur as
38 part of multibyte characters longer than 1 byte. Hence, if c < 0x30,
39 the faster unibyte loop can be used. */
40 && (unsigned char) c >= 0x30)
42 #if GNULIB_MCEL_PREFER
43 while (*string)
45 mcel_t g = mcel_scanz (string);
46 if (g.len == 1 && (unsigned char) *string == (unsigned char) c)
47 return (char *) string;
48 string += g.len;
50 #else
51 mbuif_state_t state;
52 const char *iter;
53 for (mbuif_init (state), iter = string;; )
55 if (!mbuif_avail (state, iter))
56 goto notfound;
57 mbchar_t cur = mbuif_next (state, iter);
58 if (mb_len (cur) == 1 && (unsigned char) *iter == (unsigned char) c)
59 break;
60 iter += mb_len (cur);
62 return (char *) iter;
63 notfound:
64 #endif
65 return NULL;
67 else
68 return strchr (string, c);