2016-05-03 04:41:17 +00:00
|
|
|
// Print help message for the specified command.
|
2016-05-18 22:30:21 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2006-11-17 16:24:38 +00:00
|
|
|
#include <stdio.h>
|
2016-05-03 04:41:17 +00:00
|
|
|
#include <stdlib.h>
|
2009-02-22 20:28:52 +00:00
|
|
|
#include <string.h>
|
2006-11-17 16:24:38 +00:00
|
|
|
|
2016-05-03 04:41:17 +00:00
|
|
|
#include "common.h"
|
2006-11-17 16:24:38 +00:00
|
|
|
#include "print_help.h"
|
|
|
|
|
|
|
|
#define CMD_LEN 1024
|
|
|
|
|
2009-02-22 20:28:52 +00:00
|
|
|
#define HELP_ERR "Could not show help message\n"
|
|
|
|
|
2016-05-03 04:41:17 +00:00
|
|
|
void print_help(const char *c, int fd) {
|
|
|
|
char cmd[CMD_LEN];
|
2012-11-19 00:30:30 +00:00
|
|
|
int printed = snprintf(cmd, CMD_LEN, "fish -c '__fish_print_help %s >&%d'", c, fd);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-10-22 18:21:13 +00:00
|
|
|
if (printed < CMD_LEN && system(cmd) == -1) {
|
|
|
|
write_loop(2, HELP_ERR, strlen(HELP_ERR));
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2006-11-17 16:24:38 +00:00
|
|
|
}
|