Edinburgh Speech Tools  2.1-release
EST_strcasecmp.c
Go to the documentation of this file.
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 
30 /*
31  * Modified by RJC to have a new name and to take the collation
32  * table as an optional argument.
33  */
34 
35 #include "EST_strcasecmp.h"
36 
37 #if defined(LIBC_SCCS) && !defined(lint)
38 static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93";
39 #endif /* LIBC_SCCS and not lint */
40 
41 
42 /*
43  * This array is designed for mapping upper and lower case letter
44  * together for a case independent comparison. The mappings are
45  * based upon ascii character sequences.
46  */
47 static const unsigned char def_charmap[] = {
48  0, 1, 2, 3, 4, 5, 6, 7,
49  8, 9, 10, 11, 12, 13, 14, 15,
50  16, 17, 18, 19, 20, 21, 22, 23,
51  24, 25, 26, 27, 28, 29, 30, 31,
52  32, 33, 34, 35, 36, 37, 38, 39,
53  40, 41, 42, 43, 44, 45, 46, 47,
54  48, 49, 50, 51, 52, 53, 54, 55,
55  56, 57, 58, 59, 60, 61, 62, 63,
56  64, 97, 98, 99, 100, 101, 102, 103,
57  104, 105, 106, 107, 108, 109, 110, 111,
58  112, 113, 114, 115, 116, 117, 118, 119,
59  120, 121, 122, 91, 92, 93, 94, 95,
60  96, 97, 98, 99, 100, 101, 102, 103,
61  104, 105, 106, 107, 108, 109, 110, 111,
62  112, 113, 114, 115, 116, 117, 118, 119,
63  120, 121, 122, 123, 124, 125, 126, 127,
64  128, 129, 130, 131, 132, 133, 134, 135,
65  136, 137, 138, 139, 140, 141, 142, 143,
66  144, 145, 146, 147, 148, 149, 150, 151,
67  152, 153, 154, 155, 156, 157, 158, 159,
68  160, 161, 162, 163, 164, 165, 166, 167,
69  168, 169, 170, 171, 172, 173, 174, 175,
70  176, 177, 178, 179, 180, 181, 182, 183,
71  184, 185, 186, 187, 188, 189, 190, 191,
72  192, 193, 194, 195, 196, 197, 198, 199,
73  200, 201, 202, 203, 204, 205, 206, 207,
74  208, 209, 210, 211, 212, 213, 214, 215,
75  216, 217, 218, 219, 220, 221, 222, 223,
76  224, 225, 226, 227, 228, 229, 230, 231,
77  232, 233, 234, 235, 236, 237, 238, 239,
78  240, 241, 242, 243, 244, 245, 246, 247,
79  248, 249, 250, 251, 252, 253, 254, 255,
80 };
81 
82 int
83 EST_strcasecmp(const char *s1, const char *s2, const unsigned char *charmap)
84 {
85  register const unsigned char *cm = charmap?charmap:def_charmap,
86  *us1 = (const unsigned char *)s1,
87  *us2 = (const unsigned char *)s2;
88  int r;
89 
90  while (cm[*us1] == cm[*us2++])
91  if (*us1++ == '\0')
92  return (0);
93  r = (cm[*us1] - cm[*--us2]);
94  return r;
95 }
96 
97 int
98 EST_strncasecmp(const char *s1, const char *s2, size_t n, const unsigned char *charmap)
99 {
100  if (n != 0) {
101  register const unsigned char *cm = charmap?charmap:def_charmap,
102  *us1 = (const unsigned char *)s1,
103  *us2 = (const unsigned char *)s2;
104 
105  do {
106  if (cm[*us1] != cm[*us2++])
107  return (cm[*us1] - cm[*--us2]);
108  if (*us1++ == '\0')
109  break;
110  } while (--n != 0);
111  }
112  return (0);
113 }
int EST_strncasecmp(const char *s1, const char *s2, size_t n, const unsigned char *charmap)
int EST_strcasecmp(const char *s1, const char *s2, const unsigned char *charmap)