blob: d2e90c5f46901659ae6a221c04905106fb064781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "stdio.h"
#include <wchar.h>
#include "nonstd/io.h"
int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)
{
int ret = 0;
struct io_options opt = {0};
opt.fnname = __func__;
opt.stream = stream;
ret = __scanf(&opt, (const char*)format, arg);
return ret;
}
/*
STDC(199901)
*/
|