get-rusage-data tests: Avoid failure on Linux/glibc.
[gnulib/ericb.git] / lib / unistr / u-strdup.h
blobdbc51069bfabadcaea3900874fb8a1956d9d9031
1 /* Copy UTF-8/UTF-16/UTF-32 string.
2 Copyright (C) 1999, 2002, 2006-2007, 2009-2017 Free Software Foundation,
3 Inc.
4 Written by Bruno Haible <bruno@clisp.org>, 2002.
6 This program is free software: you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include <stdlib.h>
20 #include <string.h>
22 UNIT *
23 FUNC (const UNIT *s)
25 size_t n = U_STRLEN (s) + 1;
26 UNIT *dest;
28 dest = (UNIT *) malloc (n * sizeof (UNIT));
29 if (dest != NULL)
31 #if 0
32 UNIT *destptr = dest;
34 for (; n > 0; n--)
35 *destptr++ = *s++;
36 #else
37 memcpy ((char *) dest, (const char *) s, n * sizeof (UNIT));
38 #endif
40 return dest;