mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
12 lines
262 B
C
Vendored
12 lines
262 B
C
Vendored
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "mingw_swformat.h"
|
|
|
|
int
|
|
__mingw_vswscanf (const wchar_t *s, const wchar_t *format, va_list argp)
|
|
{
|
|
_IFPW ifp = { .str = s, .is_string = 1 };
|
|
return __mingw_swformat (&ifp, format, argp);
|
|
}
|