/*** *wscanf.c - read formatted data from stdin * * Copyright (c) Microsoft Corporation. All rights reserved. * *Purpose: * defines wscanf() - reads formatted data from stdin * *******************************************************************************/ #include #include #include #include #include #include #include #include /*** *int vwscanf(format, ...) * *Purpose: * This is a helper function to be called from wscanf & wscanf_s * *Entry: * char *format - format string * va_list arglist - arglist of output pointers * *Exit: * returns number of fields read and assigned * *Exceptions: * *******************************************************************************/ int __cdecl vwscanf ( WINPUTFN winputfn, const wchar_t *format, _locale_t plocinfo, va_list arglist ) /* * stdin 'W'char_t 'SCAN', 'F'ormatted */ { int retval; _VALIDATE_RETURN( (format != NULL), EINVAL, EOF); _lock_str2(0, stdin); __try { retval = (winputfn(stdin, format, plocinfo, arglist)); } __finally { _unlock_str2(0, stdin); } return(retval); } /*** *int wscanf(format, ...) - read formatted data from stdin * *Purpose: * Reads formatted data from stdin into arguments. _input does the real * work here. * *Entry: * char *format - format string * followed by list of pointers to storage for the data read. The number * and type are controlled by the format string. * *Exit: * returns number of fields read and assigned * *Exceptions: * *******************************************************************************/ int __cdecl wscanf ( const wchar_t *format, ... ) { va_list arglist; va_start(arglist, format); return vwscanf(_winput_l, format, NULL, arglist); } int __cdecl _wscanf_l ( const wchar_t *format, _locale_t plocinfo, ... ) { va_list arglist; va_start(arglist, plocinfo); return vwscanf(_winput_l, format, plocinfo, arglist); } /*** *int wscanf_s(format, ...) * * Same as wscanf above except that it calls _input_s to do the real work. * _input_s has a size check for array parameters. * *******************************************************************************/ int __cdecl wscanf_s ( const wchar_t *format, ... ) { va_list arglist; va_start(arglist, format); return vwscanf(_winput_s_l, format, NULL, arglist); } int __cdecl _wscanf_s_l ( const wchar_t *format, _locale_t plocinfo, ... ) { va_list arglist; va_start(arglist, plocinfo); return vwscanf(_winput_s_l, format, plocinfo, arglist); }