X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fstrcasecmp.c;h=608b4a582d703f2e26be0f6f743890eeaf925dbf;hb=adf591eb56d60000e806e20c42eb1907e2cc6fcd;hp=c128f9b0afdda6876749f546d7d6293393783714;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1;p=mmh diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index c128f9b..608b4a5 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -1,21 +1,21 @@ /* - * strcasecmp.c -- compare strings, ignoring case - * - * This code is Copyright (c) 2002, by the authors of nmh. See the - * COPYRIGHT file in the root directory of the nmh distribution for - * complete copyright information. - */ +** strcasecmp.c -- compare strings, ignoring case +** +** This code is Copyright (c) 2002, by the authors of nmh. See the +** COPYRIGHT file in the root directory of the nmh distribution for +** complete copyright information. +*/ #include /* - * Our version of strcasecmp has to deal with NULL strings. - * Once that is fixed in the rest of the code, we can use the - * native version, instead of this one. - */ +** Our version of strcasecmp has to deal with NULL strings. +** Once that is fixed in the rest of the code, we can use the +** native version, instead of this one. +*/ int -mh_strcasecmp (const char *s1, const char *s2) +mh_strcasecmp(const char *s1, const char *s2) { const unsigned char *us1, *us2; @@ -32,23 +32,3 @@ mh_strcasecmp (const char *s1, const char *s2) return (0); return (tolower(*us1) - tolower(*--us2)); } - - -int -mh_strncasecmp (const char *s1, const char *s2, size_t n) -{ - const unsigned char *us1, *us2; - - if (n != 0) { - us1 = (const unsigned char *) s1, - us2 = (const unsigned char *) s2; - - do { - if (tolower(*us1) != tolower(*us2++)) - return (tolower(*us1) - tolower(*--us2)); - if (*us1++ == '\0') - break; - } while (--n != 0); - } - return (0); -}