X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fgetcpy.c;h=2e94f08b6ab8a1ef395f7ccf57b2b178ff5d6c11;hb=337338b404931f06f0db2119c9e145e8ca5a9860;hp=1186831a2cdf2e5a68ce0b720511f1f40253bcad;hpb=81a21a9a97d8633f6d6231e31fdb6e328d0d3ff2;p=mmh diff --git a/sbr/getcpy.c b/sbr/getcpy.c index 1186831..2e94f08 100644 --- a/sbr/getcpy.c +++ b/sbr/getcpy.c @@ -1,4 +1,3 @@ - /* * getcpy.c -- copy a string in managed memory * @@ -6,8 +5,6 @@ * OF GETCPY WITH STRDUP. BUT THIS WILL REQUIRE * CHANGING PARTS OF THE CODE TO DEAL WITH NULL VALUES. * - * $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. @@ -20,16 +17,16 @@ char * getcpy (char *str) { - char *cp; - size_t len; + char *cp; + size_t len; - if (str) { - len = strlen(str) + 1; - cp = mh_xmalloc (len); - memcpy (cp, str, len); - } else { - cp = mh_xmalloc ((size_t) 1); - *cp = '\0'; - } - return cp; + if (str) { + len = strlen(str) + 1; + cp = mh_xmalloc (len); + memcpy (cp, str, len); + } else { + cp = mh_xmalloc ((size_t) 1); + *cp = '\0'; + } + return cp; }