X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=inline;f=sbr%2Fstrcasecmp.c;h=79fc5a85a0d14af67c03e462f6a6098c5f23c62f;hb=337338b404931f06f0db2119c9e145e8ca5a9860;hp=c128f9b0afdda6876749f546d7d6293393783714;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1;p=mmh diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index c128f9b..79fc5a8 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -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); -}