X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcopy.c;fp=sbr%2Fcopy.c;h=0000000000000000000000000000000000000000;hp=80a1e5492c0d3ac1cc1ff8f8221bddae0660798f;hb=552fd7253e5ee9e554c5c7a8248a6322aa4363bb;hpb=682962d94b21e120c78a52a8bdcb6aa994330a14 diff --git a/sbr/copy.c b/sbr/copy.c deleted file mode 100644 index 80a1e54..0000000 --- a/sbr/copy.c +++ /dev/null @@ -1,19 +0,0 @@ -/* -** 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); -}