summaryrefslogtreecommitdiff
path: root/src/wchar/vswscanf.c
blob: c28bd64f44515b3f06d783fc67cf9ae330d62533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#if 0

#include <wchar.h>
#include "stdio/_stdio.h"

#if __STDC_VERSION__ < 199901L
	static
#endif

int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg)
{
	SIGNAL_SAFE(0);

	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)
*/


#endif