blob: 2d1814ef577c4167cf0b25edd1340ad05e0a2796 [file] [log] [blame]
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include "mingw_sformat.h"
int
__mingw_vfscanf (FILE *s, const char *format, va_list argp)
{
_IFP ifp = { .fp = s };
return __mingw_sformat (&ifp, format, argp);
}