Fix last ChangeLog entry.
[gnulib.git] / doc / c-strcasestr.texi
blob2a62400ae346f7e20564a9f2429f42f6c9bc5f30
1 @c Documentation of gnulib module 'c-strcasestr'.
3 @c Copyright (C) 2008--2021 Free Software Foundation, Inc.
5 @c Permission is granted to copy, distribute and/or modify this document
6 @c under the terms of the GNU Free Documentation License, Version 1.3 or
7 @c any later version published by the Free Software Foundation; with no
8 @c Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.  A
9 @c copy of the license is at <https://www.gnu.org/licenses/fdl-1.3.en.html>.
11 The @code{c-strcasestr} module contains a case-insensitive string search
12 function operating on single-byte character strings, that operate as if the
13 locale encoding was ASCII.
14 (The "C" locale on many systems has the locale encoding "ASCII".)
16 The function is:
17 @smallexample
18 extern char *c_strcasestr (const char *haystack, const char *needle);
19 @end smallexample
21 For case conversion here, only ASCII characters are considered to be
22 upper case or lower case.
24 Note: The function @code{strcasestr} from @code{<string.h>} supports only
25 unibyte locales; for multibyte locales, you need the function
26 @code{mbscasestr}.