home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Developers / pipes ƒ / pipe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-03  |  103 b   |  8 lines  |  [TEXT/CWIE]

  1. #ifndef PIPE
  2. #define PIPE
  3.  
  4. FILE popen(const char *fn, const char *mode);
  5. int pclose(FILE *pf);
  6.  
  7. #endif
  8.