Home | History | Annotate | Download | only in common

Lines Matching refs:str2

233 uprv_stricmp(const char *str1, const char *str2) {
235 if(str2==NULL) {
240 } else if(str2==NULL) {
249 c2=(unsigned char)*str2;
266 ++str2;
272 uprv_strnicmp(const char *str1, const char *str2, uint32_t n) {
274 if(str2==NULL) {
279 } else if(str2==NULL) {
288 c2=(unsigned char)*str2;
305 ++str2;