ReactOS
0.4.16-dev-1946-g52006dd
Functions
wcscat.cpp File Reference
#include <string.h>
Include dependency graph for wcscat.cpp:
Go to the source code of this file.
Functions
wchar_t
*
__cdecl
wcscat
(
wchar_t
*
const
destination,
wchar_t
const
*
source
)
Function Documentation
◆
wcscat()
wchar_t
*
__cdecl
wcscat
(
wchar_t
*
const
destination
,
wchar_t
const
*
source
)
Definition at line
23
of file
wcscat.cpp
.
27
{
28
wchar_t
* destination_it = destination;
29
30
// Find the end of the destination string:
31
while
(*destination_it)
32
++destination_it;
33
34
// Append the source string to the destination string:
35
while
((*destination_it++ = *
source
++) !=
L
'\0'
) { }
36
37
return
destination;
38
}
L
#define L(x)
Definition:
resources.c:13
source
Definition:
pdh_main.c:174
sdk
lib
ucrt
string
wcscat.cpp
Generated on Thu Dec 4 2025 06:26:50 for ReactOS by
1.9.6