psz2              378 lib/util/util.h _PUBLIC_ int strwicmp(const char *psz1, const char *psz2);
psz2              275 lib/util/util_str.c _PUBLIC_ int strwicmp(const char *psz1, const char *psz2)
psz2              279 lib/util/util_str.c 	if (psz1 == psz2)
psz2              283 lib/util/util_str.c 	else if (psz2 == NULL)
psz2              290 lib/util/util_str.c 		while (isspace((int)*psz2))
psz2              291 lib/util/util_str.c 			psz2++;
psz2              292 lib/util/util_str.c 		if (toupper((unsigned char)*psz1) != toupper((unsigned char)*psz2) 
psz2              294 lib/util/util_str.c 		    || *psz2 == '\0')
psz2              297 lib/util/util_str.c 		psz2++;
psz2              299 lib/util/util_str.c 	return (*psz1 - *psz2);
psz2              229 source3/lib/util_str.c int strwicmp(const char *psz1, const char *psz2)
psz2              233 source3/lib/util_str.c 	if (psz1 == psz2)
psz2              237 source3/lib/util_str.c 	else if (psz2 == NULL)
psz2              244 source3/lib/util_str.c 		while (isspace((int)*psz2))
psz2              245 source3/lib/util_str.c 			psz2++;
psz2              246 source3/lib/util_str.c 		if (toupper_ascii(*psz1) != toupper_ascii(*psz2) ||
psz2              247 source3/lib/util_str.c 				*psz1 == '\0' || *psz2 == '\0')
psz2              250 source3/lib/util_str.c 		psz2++;
psz2              252 source3/lib/util_str.c 	return (*psz1 - *psz2);