| 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 : /Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/string/ |
Upload File : |
//
// wcstok.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Defines wcstok(), which tokenizes a string via repeated calls. See strtok()
// for more details.
//
#include <corecrt_internal.h>
#include <string.h>
_Check_return_
extern "C" wchar_t* __cdecl __acrt_wcstok_s_novalidation(
_Inout_opt_z_ wchar_t* string,
_In_z_ wchar_t const* control,
_Inout_ _Deref_prepost_opt_z_ wchar_t** context
);
extern "C" wchar_t* __cdecl wcstok(
wchar_t* const string,
wchar_t const* const control,
wchar_t** const context
)
{
wchar_t** const context_to_use = context != nullptr
? context
: &__acrt_getptd()->_wcstok_token;
return __acrt_wcstok_s_novalidation(string, control, context_to_use);
}