* lib/memcasecmp.c: Include <limits.h>.
[gnulib.git] / lib / memcasecmp.c
1 /* Case-insensitive buffer comparator.
2    Copyright (C) 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Jim Meyering.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include "memcasecmp.h"
25
26 #include <ctype.h>
27 #include <limits.h>
28
29 /* Like memcmp, but ignore differences in case.
30    Convert to upper case (not lower) before comparing so that
31    join -i works with sort -f.  */
32
33 int
34 memcasecmp (const void *vs1, const void *vs2, size_t n)
35 {
36   size_t i;
37   char const *s1 = vs1;
38   char const *s2 = vs2;
39   for (i = 0; i < n; i++)
40     {
41       unsigned char u1 = s1[i];
42       unsigned char u2 = s2[i];
43       int U1 = toupper (u1);
44       int U2 = toupper (u2);
45       int diff = (UCHAR_MAX <= INT_MAX ? U1 - U2
46                   : U1 < U2 ? -1 : U2 < U1);
47       if (diff)
48         return diff;
49     }
50   return 0;
51 }