mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-20 01:25:17 +08:00

This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
16 lines
233 B
C
16 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
|