Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / peekc.c
index 5ed8c3f..cee7504 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * peekc.c -- peek at the next character in a stream
  *
@@ -13,9 +12,9 @@
 int
 peekc(FILE *fp)
 {
-    register int c;
+       register int c;
 
-    c = getc(fp);
-    ungetc(c, fp);
-    return c;
+       c = getc(fp);
+       ungetc(c, fp);
+       return c;
 }