X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..487ad115de1c5a97ab4e61bbf3f3bbbdbd97b258:/sbr/strcasecmp.c diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index bbb26cba..c48c9d4c 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -2,7 +2,9 @@ /* * strcasecmp.c -- compare strings, ignoring case * - * $Id$ + * 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 @@ -14,7 +16,7 @@ */ int -strcasecmp (const char *s1, const char *s2) +mh_strcasecmp (const char *s1, const char *s2) { const unsigned char *us1, *us2; @@ -22,9 +24,9 @@ strcasecmp (const char *s1, const char *s2) us2 = (const unsigned char *) s2; if (!us1) - us1 = ""; + us1 = (const unsigned char *) ""; if (!us2) - us2 = ""; + us2 = (const unsigned char *) ""; while (tolower(*us1) == tolower(*us2++)) if (*us1++ == '\0') @@ -34,7 +36,7 @@ strcasecmp (const char *s1, const char *s2) int -strncasecmp (const char *s1, const char *s2, size_t n) +mh_strncasecmp (const char *s1, const char *s2, size_t n) { const unsigned char *us1, *us2;