]> git.marmaro.de Git - mmh/blobdiff - sbr/strcasecmp.c
simplify whatnow.c/main() function
[mmh] / sbr / strcasecmp.c
index 354fd0fbcef738872ca9f3d373f1e940b7bb0f12..d59c10c8d190d92d93d6bb8cc390f61c2a47845f 100644 (file)
@@ -7,6 +7,7 @@
 */
 
 #include <h/mh.h>
+#include <ctype.h>
 
 /*
 ** Our version of strcasecmp has to deal with NULL strings.
@@ -15,7 +16,7 @@
 */
 
 int
-mh_strcasecmp (const char *s1, const char *s2)
+mh_strcasecmp(const char *s1, const char *s2)
 {
        const unsigned char *us1, *us2;