use _GL_ATTRIBUTE_CONST and _GL_ATTRIBUTE_PURE
[gnulib.git] / lib / memcasecmp.c
1 /* Case-insensitive buffer comparator.
2    Copyright (C) 1996-1997, 2000, 2003, 2006, 2009-2011 Free Software
3    Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program 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 General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Jim Meyering.  */
19
20 #include <config.h>
21
22 #include "memcasecmp.h"
23
24 #include <ctype.h>
25 #include <limits.h>
26
27 /* The attribute __pure__ was added in gcc 2.96.  */
28 #undef _GL_ATTRIBUTE_PURE
29 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
30 # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
31 #else
32 # define _GL_ATTRIBUTE_PURE /* empty */
33 #endif
34
35 /* Like memcmp, but ignore differences in case.
36    Convert to upper case (not lower) before comparing so that
37    join -i works with sort -f.  */
38
39 int _GL_ATTRIBUTE_PURE
40 memcasecmp (const void *vs1, const void *vs2, size_t n)
41 {
42   size_t i;
43   char const *s1 = vs1;
44   char const *s2 = vs2;
45   for (i = 0; i < n; i++)
46     {
47       unsigned char u1 = s1[i];
48       unsigned char u2 = s2[i];
49       int U1 = toupper (u1);
50       int U2 = toupper (u2);
51       int diff = (UCHAR_MAX <= INT_MAX ? U1 - U2
52                   : U1 < U2 ? -1 : U2 < U1);
53       if (diff)
54         return diff;
55     }
56   return 0;
57 }