Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / strcasecmp.c
index 04aad7d..c128f9b 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * strcasecmp.c -- compare strings, ignoring case
  *
  */
 
 int
-mh_strcasecmp (const char *s1, const char *s2) 
+mh_strcasecmp (const char *s1, const char *s2)
 {
-    const unsigned char *us1, *us2;
-
-    us1 = (const unsigned char *) s1,
-    us2 = (const unsigned char *) s2;
-
-    if (!us1)
-       us1 = "";
-    if (!us2)
-       us2 = "";
-    while (tolower(*us1) == tolower(*us2++)) 
-       if (*us1++ == '\0')
-           return (0);
-    return (tolower(*us1) - tolower(*--us2));
+       const unsigned char *us1, *us2;
+
+       us1 = (const unsigned char *) s1,
+       us2 = (const unsigned char *) s2;
+
+       if (!us1)
+               us1 = "";
+       if (!us2)
+               us2 = "";
+
+       while (tolower(*us1) == tolower(*us2++))
+               if (*us1++ == '\0')
+                       return (0);
+       return (tolower(*us1) - tolower(*--us2));
 }
+
 
 int
 mh_strncasecmp (const char *s1, const char *s2, size_t n)
 {
-    const unsigned char *us1, *us2;
-
-    if (n != 0) { 
-       us1 = (const unsigned char *) s1,
-       us2 = (const unsigned char *) s2;
-
-       do {  
-           if (tolower(*us1) != tolower(*us2++))
-               return (tolower(*us1) - tolower(*--us2));
-           if (*us1++ == '\0')
-               break;  
-       } while (--n != 0);
-    } 
-    return (0);
+       const unsigned char *us1, *us2;
+
+       if (n != 0) {
+               us1 = (const unsigned char *) s1,
+               us2 = (const unsigned char *) s2;
+
+               do {
+                       if (tolower(*us1) != tolower(*us2++))
+                               return (tolower(*us1) - tolower(*--us2));
+                       if (*us1++ == '\0')
+                               break;
+               } while (--n != 0);
+       }
+       return (0);
 }