zig/libc/mingw/misc/wcsnlen.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

14 lines
180 B
C

#define __CRT__NO_INLINE
#include <string.h>
size_t __cdecl
wcsnlen(const wchar_t *w, size_t ncnt)
{
size_t n = 0;
for (; n < ncnt && *w != 0; n++, w++)
;
return n;
}