master
1#include <stdarg.h>
2#include <stdio.h>
3#include <string.h>
4
5#include "mingw_swformat.h"
6
7int
8__mingw_vfwscanf (FILE *s, const wchar_t *format, va_list argp)
9{
10 _IFPW ifp = { .fp = s };
11 return __mingw_swformat (&ifp, format, argp);
12}