mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
12 lines
252 B
C
Vendored
12 lines
252 B
C
Vendored
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "mingw_sformat.h"
|
|
|
|
int
|
|
__mingw_vsscanf (const char *s, const char *format, va_list argp)
|
|
{
|
|
_IFP ifp = { .str = s, .is_string = 1 };
|
|
return __mingw_sformat (&ifp, format, argp);
|
|
}
|