Reformated comments and long lines
[mmh] / sbr / cpydgst.c
index 7195cd1..04ca76e 100644 (file)
@@ -1,25 +1,25 @@
 /*
- * 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