mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
15 lines
233 B
C
15 lines
233 B
C
|
|
/** \file print_help.h
|
|
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
|