mirror of
https://github.com/ziglang/zig.git
synced 2025-12-20 21:23:06 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
11 lines
189 B
C
11 lines
189 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
|
|
int vwscanf(const wchar_t *restrict fmt, va_list ap)
|
|
{
|
|
return vfwscanf(stdin, fmt, ap);
|
|
}
|
|
|
|
weak_alias(vwscanf,__isoc99_vwscanf);
|