*-map tests: Fix compilation error.
[gnulib.git] / lib / mbmemcasecoll.h
blobabaacb6927d82cce99116c5277a37da996d3e080
1 /* Locale-specific case-ignoring memory comparison.
2 Copyright (C) 2001, 2009-2019 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify it
5 under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2001. */
19 #ifndef MBMEMCASECOLL_H
20 #define MBMEMCASECOLL_H
22 #include <stdbool.h>
23 #include <stddef.h>
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
30 /* Compare the memory regions S1 = [s1..s1+s1len-1], S2 = [s2..s2+s2len-1],
31 that contain character sequences, using the rules of the current locale,
32 ignoring case.
33 HARD_LC_COLLATE is false if the LC_COLLATE category of the current locale
34 is equivalent to the "C" locale.
36 This function's result is locale dependent. Unlike memcasecmp(), it works
37 correctly in multibyte locales and also handles Turkish i / dotless i.
38 Unlike ulc_casecmp(), it does not handle the German sharp s and the Greek
39 final sigma. Like memcoll() and ulc_casecoll(), it uses collation order.
41 Return a negative number if S1 < S2, a positive number if S1 > S2, 0 if
42 S1 and S2 have the same contents, or an unspecified value if there is an
43 error.
44 Set errno to an error number if there is an error, and to zero otherwise.
46 Note: This function may, in multibyte locales, return 0 for strings of
47 different lengths! */
49 extern int mbmemcasecoll (const char *s1, size_t s1len,
50 const char *s2, size_t s2len,
51 bool hard_LC_COLLATE);
54 #ifdef __cplusplus
56 #endif
58 #endif /* MBMEMCASECOLL_H */