summaryrefslogtreecommitdiff
path: root/src/wchar/vfwprintf.c
blob: 89e4c6b50543726d8c5dafa8754282d9b0f6a5ac (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
#if 0

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

int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)
{
	SIGNAL_SAFE(0);

	int ret = 0;
	struct io_options opt = {0};
	opt.fnname = "vfwprintf";
	opt.stream = stream;
	ret = __printf(&opt, (const char*)format, arg);
	return ret;
}

/*
STDC(199409)
*/


#endif