]> git.ipfire.org Git - thirdparty/glibc.git/blame - wcsmbs/wcpcpy.c
wcsmbs: Fix data race in __wcsmbs_clone_conv [BZ #24584]
[thirdparty/glibc.git] / wcsmbs / wcpcpy.c
CommitLineData
04277e02 1/* Copyright (C) 1996-2019 Free Software Foundation, Inc.
33a934a3
UD
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
33a934a3
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
33a934a3 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
75cd5204
RM
18
19#include <wchar.h>
20
8ade3db7
SL
21#ifdef WCPCPY
22# define __wcpcpy WCPCPY
23#endif
7b3fb620 24
75cd5204
RM
25/* Copy SRC to DEST, returning the address of the terminating L'\0' in
26 DEST. */
27wchar_t *
9d46370c 28__wcpcpy (wchar_t *dest, const wchar_t *src)
75cd5204 29{
7b3fb620
AZ
30 size_t len = __wcslen (src);
31 return __wmemcpy (dest, src, len + 1) + len;
75cd5204 32}
8ade3db7 33#ifndef WCPCPY
75cd5204 34weak_alias (__wcpcpy, wcpcpy)
8ade3db7 35#endif