xref: /dflybsd-src/lib/libc/string/wcsdup.c (revision 0d5acd7467c4e95f792ef49fceb3ab8e917ce86b)
1716024cdSPeter Avalos /*-
2716024cdSPeter Avalos  * Copyright (c) 2005 Tim J. Robbins.
3716024cdSPeter Avalos  * All rights reserved.
4716024cdSPeter Avalos  *
5716024cdSPeter Avalos  * Redistribution and use in source and binary forms, with or without
6716024cdSPeter Avalos  * modification, are permitted provided that the following conditions
7716024cdSPeter Avalos  * are met:
8716024cdSPeter Avalos  * 1. Redistributions of source code must retain the above copyright
9716024cdSPeter Avalos  *    notice, this list of conditions and the following disclaimer.
10716024cdSPeter Avalos  * 2. Redistributions in binary form must reproduce the above copyright
11716024cdSPeter Avalos  *    notice, this list of conditions and the following disclaimer in the
12716024cdSPeter Avalos  *    documentation and/or other materials provided with the distribution.
13716024cdSPeter Avalos  *
14716024cdSPeter Avalos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15716024cdSPeter Avalos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16716024cdSPeter Avalos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17716024cdSPeter Avalos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18716024cdSPeter Avalos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19716024cdSPeter Avalos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20716024cdSPeter Avalos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21716024cdSPeter Avalos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22716024cdSPeter Avalos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23716024cdSPeter Avalos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24716024cdSPeter Avalos  * SUCH DAMAGE.
25716024cdSPeter Avalos  *
26*0d5acd74SJohn Marino  * $FreeBSD: head/lib/libc/string/wcsdup.c 149011 2005-08-13 05:54:33Z tjr $
27716024cdSPeter Avalos  */
28716024cdSPeter Avalos 
29716024cdSPeter Avalos #include <stdlib.h>
30716024cdSPeter Avalos #include <wchar.h>
31716024cdSPeter Avalos 
32716024cdSPeter Avalos wchar_t *
wcsdup(const wchar_t * s)33716024cdSPeter Avalos wcsdup(const wchar_t *s)
34716024cdSPeter Avalos {
35716024cdSPeter Avalos 	wchar_t *copy;
36716024cdSPeter Avalos 	size_t len;
37716024cdSPeter Avalos 
38716024cdSPeter Avalos 	len = wcslen(s) + 1;
39716024cdSPeter Avalos 	if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
40716024cdSPeter Avalos 		return (NULL);
41716024cdSPeter Avalos 	return (wmemcpy(copy, s, len));
42716024cdSPeter Avalos }
43