From: Thomas Roessler Date: Wed, 11 Nov 1998 13:52:13 +0000 (+0000) Subject: the s/str.*cmp/mutt_str.*cmp/ replacement should not have taken X-Git-Tag: mutt-0-94-17i-rel~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fadf024d9d04ed3edc0a647792894dbf19771a8;p=mutt the s/str.*cmp/mutt_str.*cmp/ replacement should not have taken place here. --- diff --git a/strcasecmp.c b/strcasecmp.c index 8c582d76..1a92bc36 100644 --- a/strcasecmp.c +++ b/strcasecmp.c @@ -4,7 +4,7 @@ static const char rcsid[]="$Id$"; /* UnixWare doesn't have these functions in its standard C library */ -int mutt_strncasecmp (char *s1, char *s2, size_t n) +int strncasecmp (char *s1, char *s2, size_t n) { register int c1, c2, l = 0; @@ -21,7 +21,7 @@ int mutt_strncasecmp (char *s1, char *s2, size_t n) return (int) (0); } -int mutt_strcasecmp (char *s1, char *s2) +int strcasecmp (char *s1, char *s2) { register int c1, c2;