zig/libc/mingw/stdio/mingw_scanf.c
Andrew Kelley 2bb93784c6
mingw: build and link mingwex.lib
zig can now cross compile hello.c targeting windows
2019-07-10 17:41:34 -04:00

29 lines
523 B
C

#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
extern int __mingw_vfscanf (FILE *stream, const char *format, va_list argp);
int __mingw_scanf (const char *format, ...);
int __mingw_vscanf (const char *format, va_list argp);
int
__mingw_scanf (const char *format, ...)
{
va_list argp;
int r;
va_start (argp, format);
r = __mingw_vfscanf (stdin, format, argp);
va_end (argp);
return r;
}
int
__mingw_vscanf (const char *format, va_list argp)
{
return __mingw_vfscanf (stdin, format, argp);
}