Xinqi Bao's Git
7aa6c4f89c2350aa27ae1ea208eb7b14d5f70cb1
1 /* See LICENSE file for copyright and license details. */
9 run_command(const char *cmd
)
16 warn("Failed to get command output for %s", cmd
);
19 p
= fgets(buf
, sizeof(buf
) - 1, fp
);
23 if ((p
= strrchr(buf
, '\n')) != NULL
)
26 return buf
[0] ? buf
: NULL
;