6 Copyright (c) 1991-2001, Be Incorporated. All rights reserved.
8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 Except as contained in this notice, the name of Be Incorporated shall not be
26 used in advertising or otherwise to promote the sale, use or other dealings in
27 this Software without prior written authorization from Be Incorporated.
29 BeMail(TM), Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
30 of Be Incorporated in the United States and other countries. Other brand product
31 names are registered trademarks or trademarks of their respective holders.
36 #include "Utilities.h"
41 #include <TypeConstants.h>
49 WriteAttrString(BNode
* node
, const char* attr
, const char* value
)
52 value
= B_EMPTY_STRING
;
54 ssize_t size
= node
->WriteAttr(attr
, B_STRING_TYPE
, 0, value
,
57 return size
>= 0 ? B_OK
: size
;
61 //====================================================================
62 // case-insensitive version of strcmp
66 cistrcmp(const char* str1
, const char* str2
)
73 len
= strlen(str1
) + 1;
74 for (loop
= 0; loop
< len
; loop
++) {
76 if (c1
>= 'A' && c1
<= 'Z')
79 if (c2
>= 'A' && c2
<= 'Z')
84 } else if (c1
> c2
|| !c2
) {
92 //====================================================================
93 // case-insensitive version of strncmp
97 cistrncmp(const char* str1
, const char* str2
, int32 max
)
103 for (loop
= 0; loop
< max
; loop
++) {
105 if (c1
>= 'A' && c1
<= 'Z')
108 if (c2
>= 'A' && c2
<= 'Z')
111 } else if (c1
< c2
) {
113 } else if (c1
> c2
|| !c2
) {
121 //--------------------------------------------------------------------
122 // case-insensitive version of strstr
126 cistrstr(const char* cs
, const char* ct
)
137 for (loop1
= 0; loop1
< cs_len
; loop1
++) {
138 if (cs_len
- loop1
< ct_len
)
141 for (loop2
= 0; loop2
< ct_len
; loop2
++) {
142 c1
= cs
[loop1
+ loop2
];
143 if ((c1
>= 'A') && (c1
<= 'Z'))
146 if ((c2
>= 'A') && (c2
<= 'Z'))
151 return const_cast<char*>(&cs
[loop1
]);
153 // label must be followed by a statement
160 //--------------------------------------------------------------------
161 // return length of \n terminated line
165 linelen(char* str
, int32 len
, bool header
)
169 for (loop
= 0; loop
< len
; loop
++) {
170 if (str
[loop
] == '\n') {
171 if (!header
|| loop
< 2
172 || (header
&& str
[loop
+ 1] != ' ' && str
[loop
+ 1] != '\t'))