Files
Katayama Hirofumi MZ 0572d36024 [CRT][UCRT][MSVCRT] intrinsic functions: Follow-up of #9157 (#9226)
JIRA issue: CORE-20617
@learn-more found #9157 breaks the build as follows:
> error C2220: the following warning is treated as an error
> warning C4163: 'strncmp': not available as an intrinsic function
> warning C4163: 'strncpy': not available as an intrinsic function
_MSC_VER=1932 was not the version that the intrinsic functions
(strncmp, strncpy, wcsncmp, wcsncpy) added.
Using Compiler Explorer could detect the correct version:
_MSC_VER=1950.
2026-06-29 13:48:51 +09:00

46 lines
1.0 KiB
C++

//
// 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
#if defined(_MSC_VER) && (defined(_M_ARM) || _MSC_VER >= 1950)
#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;
}