apply new hurd patch to my tree
[debian/pax] / fgetln.h
1 /* fgetline:  Read one line of input and return a pointer to
2    that line.  Necessary space is obtained from malloc.
3    (char *) NULL is returned on EOF.
4
5     Andy Dougherty              doughera@lafcol.lafayette.edu
6     Dept. of Physics
7     Lafayette College, Easton PA 18042
8
9     This fgetline implementation was written by Andrew Dougherty
10     <doughera@lafayette.edu>.  I hearby place it in the public domain.
11     As a courtesy, please leave my name attached to the source.
12
13     This code comes with no warranty whatsoever, and I take no
14     responsibility for any consequences of its use.
15 */
16
17 char *fgetln(FILE *fp, size_t *length);