]> git.marmaro.de Git - mmh/blobdiff - sbr/getanswer.c
Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / getanswer.c
index d0ec6f8ec566b0d5d454f8c973e62c0910cc69eb..ed5fac056cdb98775304ce7c3bd79be45ff1e8c3 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * getanswer.c -- get a yes/no answer from the user
  *
 int
 getanswer (char *prompt)
 {
-    static int interactive = -1;
+       static int interactive = -1;
 
-    if (interactive < 0)
-       interactive = isatty (fileno (stdin)) ? 1 : 0;
+       if (interactive < 0)
+               interactive = isatty (fileno (stdin)) ? 1 : 0;
 
-    return (interactive ? gans (prompt, anoyes) : 1);
+       return (interactive ? gans (prompt, anoyes) : 1);
 }