Run Nindent on sample/skipatou.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)
Automatically reformat sample/skipatou.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>
sample/skipatou.c

index 1641a13..ea2dbad 100644 (file)
@@ -1,14 +1,13 @@
-static inline int
-isdigit(int ch)
+static inline int isdigit(int ch)
 {
-  return (ch >= '0') && (ch <= '9');
+    return (ch >= '0') && (ch <= '9');
 }
 
 unsigned int skip_atou(const char **s)
 {
-  int i=0;
+    int i = 0;
 
-  while (isdigit(**s))
-    i = i*10 + *((*s)++) - '0';
-  return i;
+    while (isdigit(**s))
+       i = i * 10 + *((*s)++) - '0';
+    return i;
 }