X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcopyip.c;h=e5ded8298184d8cc7b65258bf0ce32781aa6aafe;hb=cde17f8d38bf9306df4706ac2acb528a2a686a29;hp=5ae52bdf53028e31dc69c217a7402a1e6842b000;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1;p=mmh diff --git a/sbr/copyip.c b/sbr/copyip.c index 5ae52bd..e5ded82 100644 --- a/sbr/copyip.c +++ b/sbr/copyip.c @@ -1,16 +1,16 @@ /* - * copyip.c -- copy a string array and return pointer to end - * - * 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. - */ +** copyip.c -- copy a string array and return pointer to end +** +** 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 ** -copyip (char **p, char **q, int len_q) +copyip(char **p, char **q, int len_q) { while (*p && --len_q > 0) *q++ = *p++;