mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 23:04:24 +00:00
14 lines
264 B
C
Vendored
14 lines
264 B
C
Vendored
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "mingw_sformat.h"
|
|
|
|
int
|
|
__mingw_vfscanf (FILE *s, const char *format, va_list argp)
|
|
{
|
|
_IFP ifp;
|
|
memset (&ifp, 0, sizeof (_IFP));
|
|
ifp.fp = s;
|
|
return __mingw_sformat (&ifp, format, argp);
|
|
}
|