Imported Debian patch 1.6.8p9-2
[debian/sudo] / strcasecmp.c
1 /*
2  * Copyright (c) 1987, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * @(#)strcasecmp.c     8.1 (Berkeley) 6/4/93
30  */
31
32 #include "config.h"
33 #include <sys/types.h>
34
35 #ifndef lint
36 static const char rcsid[] = "$Sudo: strcasecmp.c,v 1.3 1999/11/05 17:00:00 millert Exp $";
37 #endif /* lint */
38
39 /*
40  * This array is designed for mapping upper and lower case letter
41  * together for a case independent comparison.  The mappings are
42  * based upon ascii character sequences.
43  */
44 static const unsigned char charmap[] = {
45         '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
46         '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
47         '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
48         '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
49         '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
50         '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
51         '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
52         '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
53         '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
54         '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
55         '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
56         '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
57         '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
58         '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
59         '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
60         '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
61         '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
62         '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
63         '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
64         '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
65         '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
66         '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
67         '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
68         '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
69         '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
70         '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
71         '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
72         '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
73         '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
74         '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
75         '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
76         '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
77 };
78
79 int
80 strcasecmp(s1, s2)
81         const char *s1, *s2;
82 {
83         const unsigned char *cm = charmap,
84                             *us1 = (const unsigned char *)s1,
85                             *us2 = (const unsigned char *)s2;
86
87         while (cm[*us1] == cm[*us2++])
88                 if (*us1++ == '\0')
89                         return (0);
90         return (cm[*us1] - cm[*--us2]);
91 }
92
93 int
94 strncasecmp(s1, s2, n)
95         const char *s1, *s2;
96         size_t n;
97 {
98
99         if (n != 0) {
100                 const unsigned char *cm = charmap,
101                                     *us1 = (const unsigned char *)s1,
102                                     *us2 = (const unsigned char *)s2;
103
104                 do {
105                         if (cm[*us1] != cm[*us2++])
106                                 return (cm[*us1] - cm[*--us2]);
107                         if (*us1++ == '\0')
108                                 break;
109                 } while (--n != 0);
110         }
111         return (0);
112 }