Files
zig/lib/libc/musl/src/stdio/fwide.c
Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
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
2019-07-15 17:54:50 -04:00

17 lines
289 B
C
Vendored

#include <wchar.h>
#include "stdio_impl.h"
#include "locale_impl.h"
int fwide(FILE *f, int mode)
{
FLOCK(f);
if (mode) {
if (!f->locale) f->locale = MB_CUR_MAX==1
? C_LOCALE : UTF8_LOCALE;
if (!f->mode) f->mode = mode>0 ? 1 : -1;
}
mode = f->mode;
FUNLOCK(f);
return mode;
}