ReactOS 0.4.16-dev-937-g7afcd2a
wcscat_s.cpp
Go to the documentation of this file.
1//
2// wcscat_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines wcscat_s(), which concatenates (appends) a copy of the source string
7// to the end of the destiation string.
8//
10#include <string.h>
11
12
13
15 wchar_t* const destination,
16 size_t const size_in_elements,
17 wchar_t const* const source
18 )
19{
20 return common_tcscat_s(destination, size_in_elements, source);
21}
#define __cdecl
Definition: accygwin.h:79
size_t const size_in_elements
int errno_t
Definition: corecrt.h:615
errno_t __cdecl wcscat_s(wchar_t *const destination, size_t const size_in_elements, wchar_t const *const source)
Definition: wcscat_s.cpp:14