Use spaces for indentation, not tabs.
[gnulib.git] / lib / memrchr.c
index da93ca0..f9c7683 100644 (file)
@@ -84,15 +84,15 @@ __memrchr (void const *s, int c_in, size_t n)
       repeated_one |= repeated_one << 31 << 1;
       repeated_c |= repeated_c << 31 << 1;
       if (8 < sizeof (longword))
-       {
-         size_t i;
-
-         for (i = 64; i < sizeof (longword) * 8; i *= 2)
-           {
-             repeated_one |= repeated_one << i;
-             repeated_c |= repeated_c << i;
-           }
-       }
+        {
+          size_t i;
+
+          for (i = 64; i < sizeof (longword) * 8; i *= 2)
+            {
+              repeated_one |= repeated_one << i;
+              repeated_c |= repeated_c << i;
+            }
+        }
     }
 
   /* Instead of the traditional loop which tests each byte, we will test a
@@ -131,11 +131,11 @@ __memrchr (void const *s, int c_in, size_t n)
       longword longword1 = *--longword_ptr ^ repeated_c;
 
       if ((((longword1 - repeated_one) & ~longword1)
-          & (repeated_one << 7)) != 0)
-       {
-         longword_ptr++;
-         break;
-       }
+           & (repeated_one << 7)) != 0)
+        {
+          longword_ptr++;
+          break;
+        }
       n -= sizeof (longword);
     }
 
@@ -151,7 +151,7 @@ __memrchr (void const *s, int c_in, size_t n)
   while (n-- > 0)
     {
       if (*--char_ptr == c)
-       return (void *) char_ptr;
+        return (void *) char_ptr;
     }
 
   return NULL;