master
1#include <stdarg.h>
2#include <stdio.h>
3#include <string.h>
4
5#include "mingw_sformat.h"
6
7int
8__mingw_vsscanf (const char *s, const char *format, va_list argp)
9{
10 _IFP ifp = { .str = s, .is_string = 1 };
11 return __mingw_sformat (&ifp, format, argp);
12}