X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=usystem.c;h=743c701c8c12744bf9c02280329fab83f52fbaa2;hb=c0bcf53dc4abc3fc4001252c734b926765598837;hp=23ba305799bc93e6851b794c8a00fabdb87a054a;hpb=2655364624f87e757fa8719d3510bdf02ccf850c;p=xboard.git diff --git a/usystem.c b/usystem.c index 23ba305..743c701 100644 --- a/usystem.c +++ b/usystem.c @@ -516,6 +516,32 @@ DestroyChildProcess (ProcRef pr, int signalType) close(cp->fdTo); } +char * +BufferCommandOutput (char *command, int size) +{ + char *res = (char *) calloc(1, size); + if(res) { + int count; + FILE *f; +#if 0 + ChildProc *pr; + StartChildProcess(command, ".", (ProcRef) &pr); // run command in daughter process + f = fdopen(pr->fdFrom, "r"); + count = fread(res, 1, size-1, f); // read its output + fclose(f); + DestroyChildProcess((ProcRef) pr, 9); + free(pr); +#else + f = popen(command, "r"); + if(!f) return res; + count = fread(res, 1, size-1, f); // read its output + pclose(f); +#endif + res[count > 0 ? count : 0] = NULLCHAR; + } + return res; // return buffer with output +} + void InterruptChildProcess (ProcRef pr) {