| 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/conio/ |
Upload File : |
//
// input.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// The core formatted input functions for direct console I/O.
//
#include <corecrt_internal_stdio_input.h>
using namespace __crt_stdio_input;
template <typename Character>
static int __cdecl common_cscanf(
unsigned __int64 const options,
Character const* const format,
_locale_t const locale,
va_list const arglist
) throw()
{
typedef input_processor<
Character,
console_input_adapter<Character>
> processor_type;
_LocaleUpdate locale_update(locale);
processor_type processor(
console_input_adapter<Character>(),
options,
format,
locale_update.GetLocaleT(),
arglist);
return processor.process();
}
extern "C" int __cdecl __conio_common_vcscanf(
unsigned __int64 const options,
char const* const format,
_locale_t const locale,
va_list const arglist
)
{
return common_cscanf(options, format, locale, arglist);
}
extern "C" int __cdecl __conio_common_vcwscanf(
unsigned __int64 const options,
wchar_t const* const format,
_locale_t const locale,
va_list const arglist
)
{
return common_cscanf(options, format, locale, arglist);
}