kernel: Remove the FFS_ROOT option. It was a no-op since 4.9.
[dragonfly.git] / lib / libc / citrus / citrus_bcs.c
blobea029565b586579c826169a068de8ec6bea8314e
1 /* $FreeBSD: head/lib/libc/iconv/citrus_bcs.c 219019 2011-02-25 00:04:39Z gabor $ */
2 /* $NetBSD: citrus_bcs.c,v 1.5 2005/05/14 17:55:42 tshiozak Exp $ */
4 /*-
5 * Copyright (c)2003 Citrus Project,
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
30 #include <sys/cdefs.h>
32 #include <assert.h>
33 #include <stdlib.h>
35 #include "citrus_namespace.h"
36 #include "citrus_bcs.h"
39 * case insensitive comparison between two C strings.
41 int
42 _citrus_bcs_strcasecmp(const char * __restrict str1,
43 const char * __restrict str2)
45 int c1, c2;
47 c1 = c2 = 1;
49 while (c1 && c2 && c1 == c2) {
50 c1 = _bcs_toupper(*str1++);
51 c2 = _bcs_toupper(*str2++);
54 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
58 * case insensitive comparison between two C strings with limitation of length.
60 int
61 _citrus_bcs_strncasecmp(const char * __restrict str1,
62 const char * __restrict str2, size_t sz)
64 int c1, c2;
66 c1 = c2 = 1;
68 while (c1 && c2 && c1 == c2 && sz != 0) {
69 c1 = _bcs_toupper(*str1++);
70 c2 = _bcs_toupper(*str2++);
71 sz--;
74 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
78 * skip white space characters.
80 const char *
81 _citrus_bcs_skip_ws(const char *p)
84 while (*p && _bcs_isspace(*p))
85 p++;
87 return (p);
91 * skip non white space characters.
93 const char *
94 _citrus_bcs_skip_nonws(const char *p)
97 while (*p && !_bcs_isspace(*p))
98 p++;
100 return (p);
104 * skip white space characters with limitation of length.
106 const char *
107 _citrus_bcs_skip_ws_len(const char * __restrict p, size_t * __restrict len)
110 while (*p && *len > 0 && _bcs_isspace(*p)) {
111 p++;
112 (*len)--;
115 return (p);
119 * skip non white space characters with limitation of length.
121 const char *
122 _citrus_bcs_skip_nonws_len(const char * __restrict p, size_t * __restrict len)
125 while (*p && *len > 0 && !_bcs_isspace(*p)) {
126 p++;
127 (*len)--;
130 return (p);
134 * truncate trailing white space characters.
136 void
137 _citrus_bcs_trunc_rws_len(const char * __restrict p, size_t * __restrict len)
140 while (*len > 0 && _bcs_isspace(p[*len - 1]))
141 (*len)--;
145 * destructive transliterate to lowercase.
147 void
148 _citrus_bcs_convert_to_lower(char *s)
151 while (*s) {
152 *s = _bcs_tolower(*s);
153 s++;
158 * destructive transliterate to uppercase.
160 void
161 _citrus_bcs_convert_to_upper(char *s)
164 while (*s) {
165 *s = _bcs_toupper(*s);
166 s++;