X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcopy.c;h=0e013abf8cd7814824bca91f85906752da91bb9a;hb=d318de52a08f7a84467a5e349b9b655b84ef6fca;hp=52989aab36908dd7ffe1c73bc7d56dc8be166b10;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/copy.c b/sbr/copy.c index 52989aa..0e013ab 100644 --- a/sbr/copy.c +++ b/sbr/copy.c @@ -1,22 +1,19 @@ - /* - * copy.c -- copy a string and return pointer to NULL terminator - * - * $Id$ - * - * 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. - */ +** 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); }