[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
vwscanf

Reads formatted text from wide-character oriented stdin.
Compatibility:
This function is compatible with the following targets:
Prototype:
#include <wchar.h>
int vwscanf(const wchar_t * format, va_list arg);
Parameters:
Parameters for this function are:
Remarks:
The vwscantf() function works identically to the wscanf() function. Instead of the variable list of arguments that can be passed to wscanf(), vwscanf() accepts its arguments in the array arg of type va_list, which must have been initialized by the va_start() macro (and possibly subsequent va_arg calls) from the stdarg.h header file. The vwscanf() function does not invoke the va_end macro.
Refer to the "wscanf" function for details of the format string.
Return:
The vwscanf() function returns the number of items assigned, which can be fewer than provided for in the case of an early matching failure. If an input failure occurs before any conversion, vwscanf() returns EOF.
See Also:
"Wide Character and Byte Character Stream Orientation"
"vfwscanf"
"scanf"
[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.
Last updated: August 16, 2000