mirror of
https://github.com/ziglang/zig.git
synced 2025-12-21 05:33:15 +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
7 lines
130 B
C
7 lines
130 B
C
#include <stdio.h>
|
|
|
|
ssize_t getline(char **restrict s, size_t *restrict n, FILE *restrict f)
|
|
{
|
|
return getdelim(s, n, '\n', f);
|
|
}
|