1 /* $NetBSD: citrus_bcs.c,v 1.5 2005/05/14 17:55:42 tshiozak Exp $ */
4 * Copyright (c)2003 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
29 #if HAVE_NBTOOL_CONFIG_H
30 #include "nbtool_config.h"
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 */
39 #include "namespace.h"
44 #include "citrus_namespace.h"
45 #include "citrus_bcs.h"
48 * case insensitive comparison between two C strings.
51 _citrus_bcs_strcasecmp(const char * __restrict str1
,
52 const char * __restrict str2
)
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.
68 _citrus_bcs_strncasecmp(const char * __restrict str1
,
69 const char * __restrict str2
, size_t sz
)
73 while (c1
&& c2
&& c1
== c2
&& sz
!= 0) {
74 c1
= _bcs_toupper(*str1
++);
75 c2
= _bcs_toupper(*str2
++);
79 return ((c1
== c2
) ? 0 : ((c1
> c2
) ? 1 : -1));
83 * skip white space characters.
86 _citrus_bcs_skip_ws(const char *p
)
89 while (*p
&& _bcs_isspace(*p
))
96 * skip non white space characters.
99 _citrus_bcs_skip_nonws(const char *p
)
102 while (*p
&& !_bcs_isspace(*p
))
109 * skip white space characters with limitation of length.
112 _citrus_bcs_skip_ws_len(const char * __restrict p
, size_t * __restrict len
)
115 while (*p
&& *len
> 0 && _bcs_isspace(*p
)) {
124 * skip non white space characters with limitation of length.
127 _citrus_bcs_skip_nonws_len(const char * __restrict p
, size_t * __restrict len
)
130 while (*p
&& *len
> 0 && !_bcs_isspace(*p
)) {
139 * truncate trailing white space characters.
142 _citrus_bcs_trunc_rws_len(const char * __restrict p
, size_t * __restrict len
)
145 while (*len
> 0 && _bcs_isspace(p
[*len
- 1]))
150 * destructive transliterate to lowercase.
153 _citrus_bcs_convert_to_lower(char *s
)
156 *s
= _bcs_tolower(*s
);
162 * destructive transliterate to uppercase.
165 _citrus_bcs_convert_to_upper(char *s
)
168 *s
= _bcs_toupper(*s
);