X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fstrcasecmp.c;h=04aad7d31f904db9b7cbaca402ae6ef1e3af73b3;hp=f0358bdd22ca392baf05ef7dff82ba5f25ceafa6;hb=5dd6771b28c257af405d7248639ed0e3bcdce38b;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68 diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index f0358bd..04aad7d 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -2,8 +2,6 @@ /* * 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. @@ -18,7 +16,7 @@ */ int -strcasecmp (const char *s1, const char *s2) +mh_strcasecmp (const char *s1, const char *s2) { const unsigned char *us1, *us2; @@ -38,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;