]> granicus.if.org Git - mutt/commitdiff
the s/str.*cmp/mutt_str.*cmp/ replacement should not have taken
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 11 Nov 1998 13:52:13 +0000 (13:52 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 11 Nov 1998 13:52:13 +0000 (13:52 +0000)
place here.

strcasecmp.c

index 8c582d7603f3bca24ef1bab68763c1fd3269773d..1a92bc36f07200de252c39e7a4dc7aeecf428e29 100644 (file)
@@ -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;