ReactOS 0.4.16-dev-937-g7afcd2a
wcscpy_s.cpp
Go to the documentation of this file.
1//
2// wcscpy_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines wcscpy_s(), which copies a string from one buffer to another.
7//
9#include <string.h>
10
12 wchar_t* const destination,
13 size_t const size_in_elements,
14 wchar_t const* const source
15 )
16{
17 return common_tcscpy_s(destination, size_in_elements, source);
18}
#define __cdecl
Definition: accygwin.h:79
size_t const size_in_elements
#define wcscpy_s(d, l, s)
Definition: utility.h:201
int errno_t
Definition: corecrt.h:615