mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 19:53:36 +08:00
16 lines
228 B
C
16 lines
228 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( char *cmd, int fd );
|
||
|
|
||
|
#endif
|