#ifndef _SK_UTIL_EXEC_H #define _SK_UTIL_EXEC_H #if HAVE_STDBOOL_H #include #endif #include "envp.h" #include /** * exec_subcmd: * ... * * @param * @return ... */ pid_t exec_subcmd( char *const argv[], int stdin, int stdout, int stderr, bool close_fds, const char *cwd, envp_t *const envp); #endif