Scan formatted input from stdin
#include <wchar.h>
int wscanf( const char * format,
... );
libc
The wscanf() function scans input from stdin under control of the format argument, assigning values to the remaining arguments. It is the wide-character version of scanf() and uses the same conversions.
| Safety: | |
|---|---|
| Cancellation point | Yes |
| Interrupt handler | No |
| Signal handler | No |
| Thread | Yes |
fscanf(), sscanf(), vfscanf(), vsscanf()