Download
jcs
/wallops
/strcasecmp.c
(View History)
jcs util: Sync with upstream, fold in strcasecmp | Latest amendment: 52 on 2024-08-30 |
1 | /* $OpenBSD: strcasecmp.c,v 1.7 2015/08/31 02:53:57 guenther Exp $ */ |
2 | |
3 | /* |
4 | * Copyright (c) 1987, 1993 |
5 | * The Regents of the University of California. All rights reserved. |
6 | * |
7 | * Redistribution and use in source and binary forms, with or without |
8 | * modification, are permitted provided that the following conditions |
9 | * are met: |
10 | * 1. Redistributions of source code must retain the above copyright |
11 | * notice, this list of conditions and the following disclaimer. |
12 | * 2. Redistributions in binary form must reproduce the above copyright |
13 | * notice, this list of conditions and the following disclaimer in the |
14 | * documentation and/or other materials provided with the distribution. |
15 | * 3. Neither the name of the University nor the names of its contributors |
16 | * may be used to endorse or promote products derived from this software |
17 | * without specific prior written permission. |
18 | * |
19 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
29 | * SUCH DAMAGE. |
30 | */ |
31 | |
32 | #include <string.h> |
33 | |
34 | typedef unsigned char u_char; |
35 | |
36 | short strcasecmp(const char *s1, const char *s2); |
37 | short strncasecmp(const char *s1, const char *s2, size_t n); |
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 u_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 | short |
80 | strcasecmp(const char *s1, const char *s2) |
81 | { |
82 | const u_char *cm = charmap; |
83 | const u_char *us1 = (const u_char *)s1; |
84 | const u_char *us2 = (const u_char *)s2; |
85 | |
86 | while (cm[*us1] == cm[*us2++]) |
87 | if (*us1++ == '\0') |
88 | return (0); |
89 | return (cm[*us1] - cm[*--us2]); |
90 | } |
91 | |
92 | short |
93 | strncasecmp(const char *s1, const char *s2, size_t n) |
94 | { |
95 | if (n != 0) { |
96 | const u_char *cm = charmap; |
97 | const u_char *us1 = (const u_char *)s1; |
98 | const u_char *us2 = (const u_char *)s2; |
99 | |
100 | do { |
101 | if (cm[*us1] != cm[*us2++]) |
102 | return (cm[*us1] - cm[*--us2]); |
103 | if (*us1++ == '\0') |
104 | break; |
105 | } while (--n != 0); |
106 | } |
107 | return (0); |
108 | } |