summaryrefslogtreecommitdiff
path: root/src/wchar/fwscanf_s.c
blob: 7188f3cf0903db8492af75c56ac72a87e95179bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#if 0

#include <stdio.h>
#include <wchar.h>

int fwscanf_s(FILE * restrict stream, const wchar_t * restrict format, ...)
{
	__C_EXT(1, 201112L);
	va_list ap;
	va_start(ap, format);
	int ret = vfwscanf_s(stream, format, ap);
	va_end(ap);
	return ret;
}

/*
CEXT1(201112)
*/


#endif