mirror of
https://github.com/ziglang/zig.git
synced 2026-02-06 14:37:04 +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
8 lines
150 B
C
Vendored
8 lines
150 B
C
Vendored
#include <string.h>
|
|
|
|
int strcmp(const char *l, const char *r)
|
|
{
|
|
for (; *l==*r && *l; l++, r++);
|
|
return *(unsigned char *)l - *(unsigned char *)r;
|
|
}
|