mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 06:15:21 +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
134 B
C
8 lines
134 B
C
#include <string.h>
|
|
|
|
char *strcat(char *restrict dest, const char *restrict src)
|
|
{
|
|
strcpy(dest + strlen(dest), src);
|
|
return dest;
|
|
}
|