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