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

Go to the source code of this file.

Functions

wchar_t *__cdecl wcsncpy (wchar_t *const destination, wchar_t const *const source, size_t const count)
 

Function Documentation

◆ wcsncpy()

wchar_t *__cdecl wcsncpy ( wchar_t *const  destination,
wchar_t const *const  source,
size_t const  count 
)

Definition at line 21 of file wcsncpy.cpp.

26{
27 size_t remaining = count;
28
29 wchar_t* destination_it = destination;
30 wchar_t const* source_it = source;
31 while (remaining != 0 && (*destination_it++ = *source_it++) != 0)
32 {
33 --remaining;
34 }
35
36 if (remaining != 0)
37 {
38 while (--remaining != 0)
39 {
40 *destination_it++ = L'\0';
41 }
42 }
43
44 return destination;
45}
GLuint GLuint GLsizei count
Definition: gl.h:1545
#define L(x)
Definition: ntvdm.h:50