1a9643ea8Slogwang /*-
2*22ce4affSfengbojiang * SPDX-License-Identifier: BSD-4-Clause
3*22ce4affSfengbojiang *
4a9643ea8Slogwang * Copyright (c) 1987, 1993
5a9643ea8Slogwang * The Regents of the University of California. All rights reserved.
6a9643ea8Slogwang *
7a9643ea8Slogwang * Redistribution and use in source and binary forms, with or without
8a9643ea8Slogwang * modification, are permitted provided that the following conditions
9a9643ea8Slogwang * are met:
10a9643ea8Slogwang * 1. Redistributions of source code must retain the above copyright
11a9643ea8Slogwang * notice, this list of conditions and the following disclaimer.
12a9643ea8Slogwang * 2. Redistributions in binary form must reproduce the above copyright
13a9643ea8Slogwang * notice, this list of conditions and the following disclaimer in the
14a9643ea8Slogwang * documentation and/or other materials provided with the distribution.
15a9643ea8Slogwang * 3. All advertising materials mentioning features or use of this software
16a9643ea8Slogwang * must display the following acknowledgement:
17a9643ea8Slogwang * This product includes software developed by the University of
18a9643ea8Slogwang * California, Berkeley and its contributors.
19a9643ea8Slogwang * 4. Neither the name of the University nor the names of its contributors
20a9643ea8Slogwang * may be used to endorse or promote products derived from this software
21a9643ea8Slogwang * without specific prior written permission.
22a9643ea8Slogwang *
23a9643ea8Slogwang * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24a9643ea8Slogwang * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25a9643ea8Slogwang * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26a9643ea8Slogwang * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27a9643ea8Slogwang * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28a9643ea8Slogwang * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29a9643ea8Slogwang * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30a9643ea8Slogwang * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31a9643ea8Slogwang * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32a9643ea8Slogwang * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33a9643ea8Slogwang * SUCH DAMAGE.
34a9643ea8Slogwang */
35a9643ea8Slogwang
36a9643ea8Slogwang #include <sys/cdefs.h>
37a9643ea8Slogwang __FBSDID("$FreeBSD$");
38a9643ea8Slogwang
39a9643ea8Slogwang #include <sys/param.h>
40a9643ea8Slogwang #include <sys/ctype.h>
41a9643ea8Slogwang #include <sys/libkern.h>
42a9643ea8Slogwang
43a9643ea8Slogwang int
strcasecmp(const char * s1,const char * s2)44a9643ea8Slogwang strcasecmp(const char *s1, const char *s2)
45a9643ea8Slogwang {
46a9643ea8Slogwang const u_char *us1 = (const u_char *)s1, *us2 = (const u_char *)s2;
47a9643ea8Slogwang
48a9643ea8Slogwang while (tolower(*us1) == tolower(*us2)) {
49a9643ea8Slogwang if (*us1++ == '\0')
50a9643ea8Slogwang return (0);
51a9643ea8Slogwang us2++;
52a9643ea8Slogwang }
53a9643ea8Slogwang return (tolower(*us1) - tolower(*us2));
54a9643ea8Slogwang }
55a9643ea8Slogwang
56a9643ea8Slogwang int
strncasecmp(const char * s1,const char * s2,size_t n)57a9643ea8Slogwang strncasecmp(const char *s1, const char *s2, size_t n)
58a9643ea8Slogwang {
59a9643ea8Slogwang
60a9643ea8Slogwang if (n != 0) {
61a9643ea8Slogwang const u_char *us1 = (const u_char *)s1;
62a9643ea8Slogwang const u_char *us2 = (const u_char *)s2;
63a9643ea8Slogwang
64a9643ea8Slogwang do {
65a9643ea8Slogwang if (tolower(*us1) != tolower(*us2))
66a9643ea8Slogwang return (tolower(*us1) - tolower(*us2));
67a9643ea8Slogwang if (*us1++ == '\0')
68a9643ea8Slogwang break;
69a9643ea8Slogwang us2++;
70a9643ea8Slogwang } while (--n != 0);
71a9643ea8Slogwang }
72a9643ea8Slogwang return (0);
73a9643ea8Slogwang }
74