403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files (x86)/Windows Kits/10/Source/10.0.26100.0/ucrt/string/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/Program Files (x86)/Windows Kits/10/Source/10.0.26100.0/ucrt/string/wcsncpy.cpp
//
// 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

#pragma function(memcpy, memset)

extern "C" wchar_t * __cdecl wcsncpy(
    wchar_t*       const destination,
    wchar_t const* const source,
    size_t         const count
    )
{
    size_t srclen = wcsnlen(source, count);
    memcpy(destination, source, srclen * sizeof(wchar_t));
    if (srclen < count)
    {
        memset(destination + srclen, 0, (count - srclen) * sizeof(wchar_t));
    }
    return(destination);
}

Youez - 2016 - github.com/yon3zu
LinuXploit