freebsd-src/contrib/cvs/lib/getline.h

24 lines
553 B
C
Raw Normal View History

#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. */
2000-10-02 06:33:59 +00:00
#define GETLINE_NO_LIMIT -1
int
getline __PROTO ((char **_lineptr, size_t *_n, FILE *_stream));
2000-10-02 06:33:59 +00:00
int
getline_safe __PROTO ((char **_lineptr, size_t *_n, FILE *_stream,
int limit));
1998-03-10 13:40:57 +00:00
int
getstr __PROTO ((char **_lineptr, size_t *_n, FILE *_stream,
2000-10-02 06:33:59 +00:00
char _terminator, int _offset, int limit));
#endif /* _getline_h_ */