#ifndef _POPEN2 #define _POPEN2 #include // Like popen(), but returns two FILE*: child's stdin and stdout, respectively. std::pair popen2(const char *command); #endif