mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 20:51:32 +00:00
7 lines
103 B
C
7 lines
103 B
C
|
#include <stdio.h>
|
||
|
|
||
|
ssize_t getline(char **s, size_t *n, FILE *f)
|
||
|
{
|
||
|
return getdelim(s, n, '\n', f);
|
||
|
}
|