Go to the source code of this file.
|
| template<typename Character > |
| static int __cdecl | common_vfscanf (unsigned __int64 const options, FILE *const stream, Character const *const format, _locale_t const locale, va_list const arglist) throw () |
| |
| int __cdecl | __stdio_common_vfscanf (unsigned __int64 const options, FILE *const stream, char const *const format, _locale_t const locale, va_list const arglist) |
| |
| int __cdecl | __stdio_common_vfwscanf (unsigned __int64 const options, FILE *const stream, wchar_t const *const format, _locale_t const locale, va_list const arglist) |
| |
| template<typename Character > |
| static int __cdecl | common_vsscanf (unsigned __int64 const options, Character const *const buffer, size_t const buffer_count, Character const *const format, _locale_t const locale, va_list const arglist) throw () |
| |
| int __cdecl | __stdio_common_vsscanf (unsigned __int64 const options, char const *const buffer, size_t const buffer_count, char const *const format, _locale_t const locale, va_list const arglist) |
| |
| int __cdecl | __stdio_common_vswscanf (unsigned __int64 const options, wchar_t const *const buffer, size_t const buffer_count, wchar_t const *const format, _locale_t const locale, va_list const arglist) |
| |
◆ _ALLOW_OLD_VALIDATE_MACROS
| #define _ALLOW_OLD_VALIDATE_MACROS |
◆ __stdio_common_vfscanf()
◆ __stdio_common_vfwscanf()
◆ __stdio_common_vsscanf()
Definition at line 113 of file input.cpp.
121{
123}
size_t const buffer_count
◆ __stdio_common_vswscanf()
◆ common_vfscanf()
Definition at line 20 of file input.cpp.
27{
29 Character,
31 > processor_type;
32
35
37 {
38 _LocaleUpdate locale_update(
locale);
39
40 processor_type processor(
44 locale_update.GetLocaleT(),
46
47 return processor.process();
48 });
49}
auto __acrt_lock_stream_and_call(FILE *const stream, Action &&action) -> decltype(action())
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
Referenced by __stdio_common_vfscanf(), and __stdio_common_vfwscanf().
◆ common_vsscanf()