Everything

wscanf


Inputs data from the standard input file (stdin) and converts it according to a format.

[Format]

#include <wchar.h>

long wscanf(const wchar_t *control [, ptr]...);

[Parameters]

control Pointer to wide string indicating format

ptr,... Pointer to storage area that stores input and converted data

[Return values]

Normal: Number of data items successfully input and converted

Abnormal: EOF

[Remarks]

The wscanf function is the wide-character version of the scanf function.