mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08:00
9d742a4fa1
Reduces lint errors from 134 to 101 (-25%). Line count from 1994 to 1466 (-26%). Another step in resolving issue #2902.
9 lines
202 B
C++
9 lines
202 B
C++
// Print help message for the specified command.
|
|
#ifndef FISH_PRINT_HELP_H
|
|
#define FISH_PRINT_HELP_H
|
|
|
|
/// Print help message for the specified command.
|
|
void print_help(const char *cmd, int fd);
|
|
|
|
#endif
|