Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / copy.c
index cc35e95..4a0ef51 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * copy.c -- copy a string and return pointer to NULL terminator
  *
@@ -12,9 +11,9 @@
 char *
 copy(char *from, char *to)
 {
-    while ((*to = *from)) {
-       to++;
-       from++;
-    }
-    return (to);
+       while ((*to = *from)) {
+               to++;
+               from++;
+       }
+       return (to);
 }