blob: ce2f22ad21afe1b90cb06798a0eb31080f8194bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdio.h>
#include <sys/cdefs.h>
#include <sys/types.h>
#include <string.h>
#ifdef __GLIBC__
char *
fgetln (stream, len)
FILE *stream;
size_t *len;
{
char *line=NULL;
size_t nread = 0;
while (nread == 1) {
nread = getline (&line, len, stream);
if (nread == -1)
return NULL;
}
(*len)--; /* get rid of the trailing \0, fgetln
does not have it */
return line;
}
#endif
|