X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcopy.c;h=80a1e5492c0d3ac1cc1ff8f8221bddae0660798f;hb=cff0e16925e7edbd25b8b9d6d4fbdf03e0e60c01;hp=577e811ef2003ab65e094974a643d736783c9e86;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/sbr/copy.c b/sbr/copy.c index 577e811..80a1e54 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 byte 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); }