mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 06:43:07 +00:00
13 lines
229 B
C
Vendored
13 lines
229 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 = { .fp = s };
|
|
return __mingw_sformat (&ifp, format, argp);
|
|
}
|