ReactOS 0.4.16-dev-937-g7afcd2a
wcscpy.cpp File Reference
#include <string.h>
Include dependency graph for wcscpy.cpp:

Go to the source code of this file.

Functions

wchar_t *__cdecl wcscpy (wchar_t *const destination, wchar_t const *source)
 

Function Documentation

◆ wcscpy()

wchar_t *__cdecl wcscpy ( wchar_t *const  destination,
wchar_t const source 
)

Definition at line 19 of file wcscpy.cpp.

22{
23 wchar_t* destination_it = destination;
24 while ((*destination_it++ = *source++) != '\0') { }
25
26 return destination;
27}