1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is the Netscape Portable Runtime (NSPR).
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
41 static const unsigned char uc
[] =
43 '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
44 '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
45 '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
46 '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
47 ' ', '!', '"', '#', '$', '%', '&', '\'',
48 '(', ')', '*', '+', ',', '-', '.', '/',
49 '0', '1', '2', '3', '4', '5', '6', '7',
50 '8', '9', ':', ';', '<', '=', '>', '?',
51 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
52 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
53 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
54 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
55 '`', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
56 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
57 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
58 'X', 'Y', 'Z', '{', '|', '}', '~', '\177',
59 0200, 0201, 0202, 0203, 0204, 0205, 0206, 0207,
60 0210, 0211, 0212, 0213, 0214, 0215, 0216, 0217,
61 0220, 0221, 0222, 0223, 0224, 0225, 0226, 0227,
62 0230, 0231, 0232, 0233, 0234, 0235, 0236, 0237,
63 0240, 0241, 0242, 0243, 0244, 0245, 0246, 0247,
64 0250, 0251, 0252, 0253, 0254, 0255, 0256, 0257,
65 0260, 0261, 0262, 0263, 0264, 0265, 0266, 0267,
66 0270, 0271, 0272, 0273, 0274, 0275, 0276, 0277,
67 0300, 0301, 0302, 0303, 0304, 0305, 0306, 0307,
68 0310, 0311, 0312, 0313, 0314, 0315, 0316, 0317,
69 0320, 0321, 0322, 0323, 0324, 0325, 0326, 0327,
70 0330, 0331, 0332, 0333, 0334, 0335, 0336, 0337,
71 0340, 0341, 0342, 0343, 0344, 0345, 0346, 0347,
72 0350, 0351, 0352, 0353, 0354, 0355, 0356, 0357,
73 0360, 0361, 0362, 0363, 0364, 0365, 0366, 0367,
74 0370, 0371, 0372, 0373, 0374, 0375, 0376, 0377
78 PL_strcasecmp(const char *a
, const char *b
)
80 const unsigned char *ua
= (const unsigned char *)a
;
81 const unsigned char *ub
= (const unsigned char *)b
;
83 if( ((const char *)0 == a
) || (const char *)0 == b
)
86 while( (uc
[*ua
] == uc
[*ub
]) && ('\0' != *a
) )
93 return (PRIntn
)(uc
[*ua
] - uc
[*ub
]);
97 PL_strncasecmp(const char *a
, const char *b
, PRUint32 max
)
99 const unsigned char *ua
= (const unsigned char *)a
;
100 const unsigned char *ub
= (const unsigned char *)b
;
102 if( ((const char *)0 == a
) || (const char *)0 == b
)
103 return (PRIntn
)(a
-b
);
105 while( max
&& (uc
[*ua
] == uc
[*ub
]) && ('\0' != *a
) )
113 if( 0 == max
) return (PRIntn
)0;
115 return (PRIntn
)(uc
[*ua
] - uc
[*ub
]);
119 PL_strcasestr(const char *big
, const char *little
)
123 if( ((const char *)0 == big
) || ((const char *)0 == little
) ) return (char *)0;
124 if( ((char)0 == *big
) || ((char)0 == *little
) ) return (char *)0;
129 /* obvious improvement available here */
130 if( 0 == PL_strncasecmp(big
, little
, ll
) )
137 PL_strcaserstr(const char *big
, const char *little
)
142 if( ((const char *)0 == big
) || ((const char *)0 == little
) ) return (char *)0;
143 if( ((char)0 == *big
) || ((char)0 == *little
) ) return (char *)0;
147 if( bl
< ll
) return (char *)0;
150 for( ; p
>= big
; p
-- )
151 /* obvious improvement available here */
152 if( 0 == PL_strncasecmp(p
, little
, ll
) )
159 PL_strncasestr(const char *big
, const char *little
, PRUint32 max
)
163 if( ((const char *)0 == big
) || ((const char *)0 == little
) ) return (char *)0;
164 if( ((char)0 == *big
) || ((char)0 == *little
) ) return (char *)0;
167 if( ll
> max
) return (char *)0;
171 for( ; max
&& *big
; big
++, max
-- )
172 /* obvious improvement available here */
173 if( 0 == PL_strncasecmp(big
, little
, ll
) )
180 PL_strncaserstr(const char *big
, const char *little
, PRUint32 max
)
185 if( ((const char *)0 == big
) || ((const char *)0 == little
) ) return (char *)0;
186 if( ((char)0 == *big
) || ((char)0 == *little
) ) return (char *)0;
190 for( p
= big
; max
&& *p
; p
++, max
-- )
194 if( p
< big
) return (char *)0;
196 for( ; p
>= big
; p
-- )
197 /* obvious improvement available here */
198 if( 0 == PL_strncasecmp(p
, little
, ll
) )