aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/print_help.cpp
blob: 03ae38593d94a358661b3538f2af630e5e366cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Print help message for the specified command.
#include "config.h"  // IWYU pragma: keep

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "common.h"
#include "print_help.h"

#define CMD_LEN 1024

#define HELP_ERR "Could not show help message\n"

void print_help(const char *c, int fd) {
    char cmd[CMD_LEN];
    int printed = snprintf(cmd, CMD_LEN, "fish -c '__fish_print_help %s >&%d'", c, fd);

    if (printed < CMD_LEN) {
        if ((system(cmd) == -1)) {
            write_loop(2, HELP_ERR, strlen(HELP_ERR));
        }
    }
}