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 >
C/C++ Source or Header  |  1994-11-05  |  321b  |  18 lines

  1. #ifndef _getline_h_
  2. #define _getline_h_ 1
  3.  
  4. #include <stdio.h>
  5.  
  6. #ifndef __P
  7. #if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
  8. #define __P(args) args
  9. #else
  10. #define __P(args) ()
  11. #endif  /* GCC.  */
  12. #endif  /* Not __P.  */
  13.  
  14. int
  15.   getline __P ((char **_lineptr, size_t *_n, FILE *_stream));
  16.  
  17. #endif /* _getline_h_ */
  18.