aboutsummaryrefslogtreecommitdiffstats
path: root/io/fwprinf.c
blob: a382ccb61f392ad869abe19354f86e1e2fad4f61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "io.h"

int fwprintf(FILE *stream, wchar_t const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = _vfwprintf_wrap(stream, format, arg);
	va_end(arg);
	return lenght;
}