00001 /* 00002 Copyright (C) 2011- The University of Notre Dame 00003 This software is distributed under the GNU General Public License. 00004 See the file COPYING for details. 00005 */ 00006 00007 #ifndef DPOPEN_H 00008 #define DPOPEN_H 00009 00010 #include <unistd.h> 00011 #include <stdio.h> 00012 00025 pid_t dpopen (const char *command, FILE **in, FILE **out); 00026 00027 int dpclose (FILE *in, FILE *out, pid_t pid); 00028 00029 #endif