18576028af
and non-unix code has been left out.
16 lines
297 B
C
16 lines
297 B
C
#ifndef _getline_h_
|
|
#define _getline_h_ 1
|
|
|
|
#include <stdio.h>
|
|
|
|
#if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
|
|
#define __PROTO(args) args
|
|
#else
|
|
#define __PROTO(args) ()
|
|
#endif /* GCC. */
|
|
|
|
int
|
|
getline __PROTO ((char **_lineptr, size_t *_n, FILE *_stream));
|
|
|
|
#endif /* _getline_h_ */
|