home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
sh-utils-1.12-src.lha
/
sh-utils-1.12
/
lib
/
getline.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-11-05
|
321b
|
18 lines
#ifndef _getline_h_
#define _getline_h_ 1
#include <stdio.h>
#ifndef __P
#if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
#define __P(args) args
#else
#define __P(args) ()
#endif /* GCC. */
#endif /* Not __P. */
int
getline __P ((char **_lineptr, size_t *_n, FILE *_stream));
#endif /* _getline_h_ */