blob: 325019d0b3a99b2dc78b1f23da630664169af22e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
ssize_t getline(char **restrict s, size_t *restrict n, FILE *restrict f)
{
return getdelim(s, n, '\n', f);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|