popen3
// <org.stdplus/posix/popen3.hpp>
namespace org
{
namespace stdplus
{
namespace posix
{
int popen3(int fd[3],const char **const cmd);
} // namespace posix
} // namespace stdplus
} // namespace org
Overview
Start a process, with stdin, stdout, and stderr redirected to pipes whose file descriptors
are stored in fd.
Preconditions
cmdis a null-terminated list of null-terminated strings representing the command to execute.