MCPcopy Create free account
hub / github.com/ElementsProject/lightning / pipecmd

Function pipecmd

ccan/ccan/pipecmd/pipecmd.c:196–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194}
195
196pid_t pipecmd(int *fd_tochild, int *fd_fromchild, int *fd_errfromchild,
197 const char *cmd, ...)
198{
199 pid_t childpid;
200
201 va_list ap;
202 va_start(ap, cmd);
203 childpid = pipecmdv(fd_tochild, fd_fromchild, fd_errfromchild, cmd, ap);
204 va_end(ap);
205
206 return childpid;
207}

Callers 4

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
test_subdaemonsFunction · 0.85

Calls 1

pipecmdvFunction · 0.85

Tested by 4

mainFunction · 0.68
mainFunction · 0.68
mainFunction · 0.68
test_subdaemonsFunction · 0.68