mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
c6372a1b3f
This is done by `sed -i -e 's/[ \t]*$//' *.[c,h]`, which should not introduce any functionality change.
15 lines
227 B
C
15 lines
227 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
|