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