Current Path : /usr/src/contrib/cvs/lib/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/cvs/lib/getline.h |
#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. */ #define GETLINE_NO_LIMIT -1 int getline __PROTO ((char **_lineptr, size_t *_n, FILE *_stream)); int getline_safe __PROTO ((char **_lineptr, size_t *_n, FILE *_stream, int limit)); int getstr __PROTO ((char **_lineptr, size_t *_n, FILE *_stream, int _terminator, int _offset, int limit)); #endif /* _getline_h_ */