ReactOS 0.4.16-dev-937-g7afcd2a
cscanf.cpp File Reference
Include dependency graph for cscanf.cpp:

Go to the source code of this file.

Macros

#define _ALLOW_OLD_VALIDATE_MACROS
 

Functions

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 ()
 
int __cdecl __conio_common_vcscanf (unsigned __int64 const options, char const *const format, _locale_t const locale, va_list const arglist)
 
int __cdecl __conio_common_vcwscanf (unsigned __int64 const options, wchar_t const *const format, _locale_t const locale, va_list const arglist)
 

Macro Definition Documentation

◆ _ALLOW_OLD_VALIDATE_MACROS

#define _ALLOW_OLD_VALIDATE_MACROS

Definition at line 8 of file cscanf.cpp.

Function Documentation

◆ __conio_common_vcscanf()

int __cdecl __conio_common_vcscanf ( unsigned __int64 const  options,
char const *const  format,
_locale_t const  locale,
va_list const  arglist 
)

Definition at line 38 of file cscanf.cpp.

44{
46}
Definition: _locale.h:75
static int __cdecl common_cscanf(unsigned __int64 const options, Character const *const format, _locale_t const locale, va_list const arglist)
Definition: cscanf.cpp:14
va_lists_t arglist[FMT_ARGMAX+1]
Definition: format.c:284
Definition: format.c:58

◆ __conio_common_vcwscanf()

int __cdecl __conio_common_vcwscanf ( unsigned __int64 const  options,
wchar_t const *const  format,
_locale_t const  locale,
va_list const  arglist 
)

Definition at line 48 of file cscanf.cpp.

54{
56}

◆ common_cscanf()

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 (
)
static

Definition at line 14 of file cscanf.cpp.

20{
21 typedef input_processor<
22 Character,
24 > processor_type;
25
26 _LocaleUpdate locale_update(locale);
27
28 processor_type processor(
30 options,
31 format,
32 locale_update.GetLocaleT(),
33 arglist);
34
35 return processor.process();
36}

Referenced by __conio_common_vcscanf(), and __conio_common_vcwscanf().