X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcopy.c;h=4a0ef51edabe0391b1febd327a9688ea4685258f;hb=b067ff5c465a5d243ce5a19e562085a9a1a97215;hp=52989aab36908dd7ffe1c73bc7d56dc8be166b10;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/copy.c b/sbr/copy.c index 52989aa..4a0ef51 100644 --- a/sbr/copy.c +++ b/sbr/copy.c @@ -1,9 +1,6 @@ - /* * 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. @@ -14,9 +11,9 @@ char * copy(char *from, char *to) { - while ((*to = *from)) { - to++; - from++; - } - return (to); + while ((*to = *from)) { + to++; + from++; + } + return (to); }