| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/string/ |
Upload File : |
//
// wcsncpy.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Defines wcsncpy(), which copies a string from one buffer to another. This
// function copies at most 'count' characters. If fewer than 'count' characters
// are copied, the rest of the buffer is padded with null characters.
//
#include <string.h>
#pragma warning(disable:__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION) // 26036
#ifdef _M_ARM
#pragma function(wcsncpy)
#endif
extern "C" wchar_t * __cdecl wcsncpy(
wchar_t* const destination,
wchar_t const* const source,
size_t const count
)
{
size_t remaining = count;
wchar_t* destination_it = destination;
wchar_t const* source_it = source;
while (remaining != 0 && (*destination_it++ = *source_it++) != 0)
{
--remaining;
}
if (remaining != 0)
{
while (--remaining != 0)
{
*destination_it++ = L'\0';
}
}
return destination;
}