2013-01-03 03:01:50 +08:00
|
|
|
/* Copyright (C) 1995-2013 Free Software Foundation, Inc.
|
1997-01-26 13:33:35 +08:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 12:58:11 +08:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-01-26 13:33:35 +08:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 12:58:11 +08:00
|
|
|
Lesser General Public License for more details.
|
1997-01-26 13:33:35 +08:00
|
|
|
|
2001-07-06 12:58:11 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 07:18:22 +08:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1996-02-08 18:00:34 +08:00
|
|
|
|
1996-04-04 00:31:49 +08:00
|
|
|
#include <wchar.h>
|
1996-02-08 18:00:34 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Duplicate S, returning an identical malloc'd string. */
|
|
|
|
wchar_t *
|
|
|
|
wcsdup (s)
|
1996-04-04 00:31:49 +08:00
|
|
|
const wchar_t *s;
|
1996-02-08 18:00:34 +08:00
|
|
|
{
|
1998-07-16 19:44:36 +08:00
|
|
|
size_t len = (__wcslen (s) + 1) * sizeof (wchar_t);
|
1996-02-08 18:00:34 +08:00
|
|
|
void *new = malloc (len);
|
|
|
|
|
|
|
|
if (new == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
1997-11-06 08:02:46 +08:00
|
|
|
return (wchar_t *) memcpy (new, (void *) s, len);
|
1996-02-08 18:00:34 +08:00
|
|
|
}
|