blob: fbff917fe10512472d7a07498f7296a9a69b276b (
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
|
#include <wchar.h>
#include "stdio.h"
#include "stdarg.h"
#include "stdlib.h"
int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)
{
/*
va_list ap;
va_copy(ap, arg);
int len = vsnwprintf(NULL, 0, format, arg);
wchar_t *buf = malloc((len + 1) * sizeof(wchar_t));
len = vsnwprintf(buf, len, format, ap);
va_end(ap);
len = (int)fwrite(buf, sizeof(*buf), len, stream);
free(buf);
return len;
*/
(void)stream; (void)format; (void)arg;
return 0;
}
/*
STDC(199409)
*/
|