Commit Diff


commit - 70f9298f90769a0998afced607d935ff0b1c3605
commit + 3df38dc527a3113030bdc747432b4433a3da9469
blob - facefab25022aa55b8b8dacea55b54123994f183
blob + 1a4d5dcc6c505a61de58bcbe244a3ffe7ef5c748
--- FICS/utils.c
+++ FICS/utils.c
@@ -60,14 +60,12 @@ PUBLIC int count_lines(FILE *fp)
   return nl;
 }
 
-PUBLIC int iswhitespace(int c)
+PUBLIC int
+iswhitespace(int c)
 {
-  if ((c < ' ') || (c == '\b') || (c == '\n') ||
-      (c == '\t') || (c == ' ')) {	/* white */
-    return 1;
-  } else {
-    return 0;
-  }
+	if (c < ' ' || c == '\b' || c == '\n' || c == '\t' || c == ' ')
+		return 1;
+	return 0;
 }
 
 PUBLIC char *