blob: 55662dff1d8ed351ac76d32a348adb2ee1ca1f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <wchar.h>
#include "stdio.h"
#include "stdarg.h"
#include "stdlib.h"
#include "nonstd/io.h"
int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)
{
int ret = 0;
struct io_options opt = {0};
opt.fnname = "vfwprintf";
opt.stream = stream;
ret = __printf(&opt, NULL /* format */, arg);
return ret;
}
/*
STDC(199409)
*/
|