]> git.marmaro.de Git - mmh/blobdiff - sbr/copy.c
Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / copy.c
index cc35e95b4ff1535846bc63537fc0128833c0a2d2..4a0ef51edabe0391b1febd327a9688ea4685258f 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);
 }