X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcopy.c;h=0e013abf8cd7814824bca91f85906752da91bb9a;hb=5d09b7206ae2602d3aedb2b552ef160b855d8054;hp=577e811ef2003ab65e094974a643d736783c9e86;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/sbr/copy.c b/sbr/copy.c index 577e811..0e013ab 100644 --- a/sbr/copy.c +++ b/sbr/copy.c @@ -1,18 +1,19 @@ - /* - * copy.c -- copy a string and return pointer to NULL terminator - * - * $Id$ - */ +** copy.c -- copy a string and return pointer to NULL terminator +** +** 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 char * copy(char *from, char *to) { - while ((*to = *from)) { - to++; - from++; - } - return (to); + while ((*to = *from)) { + to++; + from++; + } + return (to); }