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