X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fgetcpy.c;fp=sbr%2Fgetcpy.c;h=0000000000000000000000000000000000000000;hb=9cf6132a6ea29968131a000bc2fb6860affac45e;hp=67375bbc45df5f99dd9008b01d2844fa23b43826;hpb=d4c34b4439a9dbd89664de460ed37ecddc260fb1;p=mmh diff --git a/sbr/getcpy.c b/sbr/getcpy.c deleted file mode 100644 index 67375bb..0000000 --- a/sbr/getcpy.c +++ /dev/null @@ -1,32 +0,0 @@ -/* -** getcpy.c -- copy a string in managed memory -** -** THIS IS OBSOLETE. NEED TO REPLACE ALL OCCURENCES -** OF GETCPY WITH STRDUP. BUT THIS WILL REQUIRE -** CHANGING PARTS OF THE CODE TO DEAL WITH NULL VALUES. -** -** 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 -#include - - -char * -getcpy(char *str) -{ - char *cp; - size_t len; - - if (str) { - len = strlen(str) + 1; - cp = mh_xcalloc(len, sizeof(char)); - memcpy(cp, str, len); - } else { - cp = mh_xcalloc(1, sizeof(char)); - *cp = '\0'; - } - return cp; -}