home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / GAWKNT.ZIP / SRC.ZIP / POPEN.H < prev    next >
C/C++ Source or Header  |  1994-03-07  |  206b  |  19 lines

  1. /*
  2.  
  3. ** popen.h -- prototypes for pipe functions
  4.  
  5. */
  6.  
  7. #if !defined(FILE)
  8.  
  9. #include <stdio.h>
  10.  
  11. #endif
  12.  
  13.  
  14.  
  15. extern FILE *os_popen( char *, char * );
  16.  
  17. extern int  os_pclose( FILE * );
  18.  
  19.