8c480a8abcaabf22c471b54765097cf214876129
[debian/tar] / gnu / strcasecmp.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Case-insensitive string comparison function.
4    Copyright (C) 1998-1999, 2005-2007, 2009-2013 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <config.h>
20
21 /* Specification.  */
22 #include <string.h>
23
24 #include <ctype.h>
25 #include <limits.h>
26
27 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
28
29 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or
30    greater than zero if S1 is lexicographically less than, equal to or greater
31    than S2.
32    Note: This function does not work with multibyte strings!  */
33
34 int
35 strcasecmp (const char *s1, const char *s2)
36 {
37   const unsigned char *p1 = (const unsigned char *) s1;
38   const unsigned char *p2 = (const unsigned char *) s2;
39   unsigned char c1, c2;
40
41   if (p1 == p2)
42     return 0;
43
44   do
45     {
46       c1 = TOLOWER (*p1);
47       c2 = TOLOWER (*p2);
48
49       if (c1 == '\0')
50         break;
51
52       ++p1;
53       ++p2;
54     }
55   while (c1 == c2);
56
57   if (UCHAR_MAX <= INT_MAX)
58     return c1 - c2;
59   else
60     /* On machines where 'char' and 'int' are types of the same size, the
61        difference of two 'unsigned char' values - including the sign bit -
62        doesn't fit in an 'int'.  */
63     return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
64 }