psz1 378 lib/util/util.h _PUBLIC_ int strwicmp(const char *psz1, const char *psz2); psz1 275 lib/util/util_str.c _PUBLIC_ int strwicmp(const char *psz1, const char *psz2) psz1 279 lib/util/util_str.c if (psz1 == psz2) psz1 281 lib/util/util_str.c else if (psz1 == NULL) psz1 288 lib/util/util_str.c while (isspace((int)*psz1)) psz1 289 lib/util/util_str.c psz1++; psz1 292 lib/util/util_str.c if (toupper((unsigned char)*psz1) != toupper((unsigned char)*psz2) psz1 293 lib/util/util_str.c || *psz1 == '\0' psz1 296 lib/util/util_str.c psz1++; psz1 299 lib/util/util_str.c return (*psz1 - *psz2); psz1 229 source3/lib/util_str.c int strwicmp(const char *psz1, const char *psz2) psz1 233 source3/lib/util_str.c if (psz1 == psz2) psz1 235 source3/lib/util_str.c else if (psz1 == NULL) psz1 242 source3/lib/util_str.c while (isspace((int)*psz1)) psz1 243 source3/lib/util_str.c psz1++; psz1 246 source3/lib/util_str.c if (toupper_ascii(*psz1) != toupper_ascii(*psz2) || psz1 247 source3/lib/util_str.c *psz1 == '\0' || *psz2 == '\0') psz1 249 source3/lib/util_str.c psz1++; psz1 252 source3/lib/util_str.c return (*psz1 - *psz2);