some coverity fixes.
[minix.git] / lib / libc / citrus / citrus_bcs.c
blobb14186de662ccc932092d4c736d999c7f942e9ba
1 /* $NetBSD: citrus_bcs.c,v 1.5 2005/05/14 17:55:42 tshiozak Exp $ */
3 /*-
4 * Copyright (c)2003 Citrus Project,
5 * All rights reserved.
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.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
29 #if HAVE_NBTOOL_CONFIG_H
30 #include "nbtool_config.h"
31 #endif
33 #include <sys/cdefs.h>
34 #if defined(LIBC_SCCS) && !defined(lint)
35 __RCSID("$NetBSD: citrus_bcs.c,v 1.5 2005/05/14 17:55:42 tshiozak Exp $");
36 #endif /* LIBC_SCCS and not lint */
38 #ifndef HOSTPROG
39 #include "namespace.h"
40 #endif
41 #include <assert.h>
42 #include <stdlib.h>
44 #include "citrus_namespace.h"
45 #include "citrus_bcs.h"
48 * case insensitive comparison between two C strings.
50 int
51 _citrus_bcs_strcasecmp(const char * __restrict str1,
52 const char * __restrict str2)
54 int c1 = 1, c2 = 1;
56 while (c1 && c2 && c1 == c2) {
57 c1 = _bcs_toupper(*str1++);
58 c2 = _bcs_toupper(*str2++);
61 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
65 * case insensitive comparison between two C strings with limitation of length.
67 int
68 _citrus_bcs_strncasecmp(const char * __restrict str1,
69 const char * __restrict str2, size_t sz)
71 int c1 = 1, c2 = 1;
73 while (c1 && c2 && c1 == c2 && sz != 0) {
74 c1 = _bcs_toupper(*str1++);
75 c2 = _bcs_toupper(*str2++);
76 sz--;
79 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
83 * skip white space characters.
85 const char *
86 _citrus_bcs_skip_ws(const char *p)
89 while (*p && _bcs_isspace(*p))
90 p++;
92 return (p);
96 * skip non white space characters.
98 const char *
99 _citrus_bcs_skip_nonws(const char *p)
102 while (*p && !_bcs_isspace(*p))
103 p++;
105 return (p);
109 * skip white space characters with limitation of length.
111 const char *
112 _citrus_bcs_skip_ws_len(const char * __restrict p, size_t * __restrict len)
115 while (*p && *len > 0 && _bcs_isspace(*p)) {
116 p++;
117 (*len)--;
120 return (p);
124 * skip non white space characters with limitation of length.
126 const char *
127 _citrus_bcs_skip_nonws_len(const char * __restrict p, size_t * __restrict len)
130 while (*p && *len > 0 && !_bcs_isspace(*p)) {
131 p++;
132 (*len)--;
135 return (p);
139 * truncate trailing white space characters.
141 void
142 _citrus_bcs_trunc_rws_len(const char * __restrict p, size_t * __restrict len)
145 while (*len > 0 && _bcs_isspace(p[*len - 1]))
146 (*len)--;
150 * destructive transliterate to lowercase.
152 void
153 _citrus_bcs_convert_to_lower(char *s)
155 while (*s) {
156 *s = _bcs_tolower(*s);
157 s++;
162 * destructive transliterate to uppercase.
164 void
165 _citrus_bcs_convert_to_upper(char *s)
167 while (*s) {
168 *s = _bcs_toupper(*s);
169 s++;