Run Nindent on com32/lib/memmem.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
Automatically reformat com32/lib/memmem.c using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/lib/memmem.c

index 0f59938..8558a80 100644 (file)
 
 void *memmem(const void *haystack, size_t n, const void *needle, size_t m)
 {
-  const unsigned char *y = (const unsigned char *)haystack;
-  const unsigned char *x = (const unsigned char *)needle;
+    const unsigned char *y = (const unsigned char *)haystack;
+    const unsigned char *x = (const unsigned char *)needle;
 
-  size_t j, k, l;
+    size_t j, k, l;
 
-  if ( m > n )
-    return NULL;
-
-  if ( x[0] == x[1] ) {
-    k = 2;
-    l = 1;
-  } else {
-    k = 1;
-    l = 2;
-  }
+    if (m > n)
+       return NULL;
 
-  j = 0;
-  while ( j <= n-m ) {
-    if (x[1] != y[j+1]) {
-      j += k;
+    if (x[0] == x[1]) {
+       k = 2;
+       l = 1;
     } else {
-      if ( !memcmp(x+2, y+j+2, m-2) && x[0] == y[j] )
-       return (void *)&y[j];
-      j += l;
+       k = 1;
+       l = 2;
     }
-  }
 
-  return NULL;
+    j = 0;
+    while (j <= n - m) {
+       if (x[1] != y[j + 1]) {
+           j += k;
+       } else {
+           if (!memcmp(x + 2, y + j + 2, m - 2) && x[0] == y[j])
+               return (void *)&y[j];
+           j += l;
+       }
+    }
+
+    return NULL;
 }