ReactOS 0.4.16-dev-937-g7afcd2a
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}
#define L(x)
Definition: ntvdm.h:50