blob: b9eaa745bdeab3fa06ce793be6a06080d157ef10 [file] [log] [blame]
#include "libc.h"
#include <stdarg.h>
#include <stdio.h>
#include <wchar.h>
int fwscanf(FILE* restrict f, const wchar_t* restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vfwscanf(f, fmt, ap);
va_end(ap);
return ret;
}