00001 /* 00002 Copyright (C) 2008- 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 00008 #ifndef SH_POPEN_H 00009 #define SH_POPEN_H 00010 00011 #include <stdio.h> 00012 #include "process.h" 00013 00025 FILE *sh_popen(char *command); 00026 00027 00032 int sh_pclose(FILE * file); 00033 00034 00044 int sh_system(char* command); 00045 00046 #endif