Removed the space between function names and the opening parenthesis.
[mmh] / sbr / cpydgst.c
index 7195cd1..86211cf 100644 (file)
@@ -1,38 +1,38 @@
 /*
- * cpydgst.c -- copy from one fd to another in encapsulating mode
- *           -- (do dashstuffing of input data).
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** cpydgst.c -- copy from one fd to another in encapsulating mode
+**           -- (do dashstuffing of input data).
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 
 /*
- * We want to perform the substitution
- *
- *     \n(-.*)\n    -->    \n- \1\n
- *
- * This is equivalent to the sed substitution
- *
- *     sed -e 's%^-%- -%' < ifile > ofile
- *
- *  but the routine below is faster than the pipe, fork, and exec.
- */
+** We want to perform the substitution
+**
+**     \n(-.*)\n    -->    \n- \1\n
+**
+** This is equivalent to the sed substitution
+**
+**     sed -e 's%^-%- -%' < ifile > ofile
+**
+**  but the routine below is faster than the pipe, fork, and exec.
+*/
 
 #define S1 0
 #define S2 1
 
 #define output(c)  if (bp >= dp) {flush(); *bp++ = c;} else *bp++ = c
-#define flush()  if ((j = bp - outbuf) && write (out, outbuf, j) != j) \
-               adios (ofile, "error writing"); \
+#define flush()  if ((j = bp - outbuf) && write(out, outbuf, j) != j) \
+               adios(ofile, "error writing"); \
        else \
                bp = outbuf
 
 
 void
-cpydgst (int in, int out, char *ifile, char *ofile)
+cpydgst(int in, int out, char *ifile, char *ofile)
 {
        register int i, j, state;
        register char *cp, *ep;
@@ -40,20 +40,20 @@ cpydgst (int in, int out, char *ifile, char *ofile)
        char buffer[BUFSIZ], outbuf[BUFSIZ];
 
        dp = (bp = outbuf) + sizeof outbuf;
-       for (state = S1; (i = read (in, buffer, sizeof buffer)) > 0;)
+       for (state = S1; (i = read(in, buffer, sizeof buffer)) > 0;)
                for (ep = (cp = buffer) + i; cp < ep; cp++) {
                        if (*cp == '\0')
                                continue;
                        switch (state) {
                                case S1:
                                        if (*cp == '-') {
-                                               output ('-');
-                                               output (' ');
+                                               output('-');
+                                               output(' ');
                                        }
                                        state = S2;  /* fall */
 
                                case S2:
-                                       output (*cp);
+                                       output(*cp);
                                        if (*cp == '\n')
                                                state = S1;
                                        break;
@@ -61,6 +61,6 @@ cpydgst (int in, int out, char *ifile, char *ofile)
                }
 
        if (i == -1)
-               adios (ifile, "error reading");
+               adios(ifile, "error reading");
        flush();
 }