diff options
Diffstat (limited to 'io/vwscanf.c')
-rw-r--r-- | io/vwscanf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io/vwscanf.c b/io/vwscanf.c new file mode 100644 index 0000000..9b74b2f --- /dev/null +++ b/io/vwscanf.c @@ -0,0 +1,6 @@ +#include "io.h" + +int vwscanf(wchar_t const *restrict format, va_list arg) +{ + return _vfwscanf_wrap(_stdstream_wrap(stream_input), format, arg); +} |