1 /* Searching a string for the last occurrence of 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/>. */
25 #if GNULIB_MCEL_PREFER
28 # include "mbuiterf.h"
31 /* Locate the last 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. */
34 mbsrchr (const char *string
, int c
)
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 const char *result
= NULL
;
44 #if GNULIB_MCEL_PREFER
47 mcel_t g
= mcel_scanz (string
);
48 if (g
.len
== 1 && (unsigned char) *string
== (unsigned char) c
)
55 for (mbuif_init (state
), iter
= string
; mbuif_avail (state
, iter
); )
57 mbchar_t cur
= mbuif_next (state
, iter
);
58 if (mb_len (cur
) == 1 && (unsigned char) *iter
== (unsigned char) c
)
64 return (char *) result
;
67 return strrchr (string
, c
);