mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
e27664b13b
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
32 lines
726 B
C
32 lines
726 B
C
/** \file builtin_help.h
|
|
|
|
Prototypes for functions for printing usage information of builtin commands. The
|
|
corresponding .c file is automatically generated by combining the
|
|
builtin_help.hdr file with doxygen output.
|
|
*/
|
|
|
|
#ifndef FISH_BUILTIN_HELP_H
|
|
#define FISH_BUILTIN_HELP_H
|
|
|
|
#include <wchar.h>
|
|
|
|
/**
|
|
Return the help text for the specified builtin command. Use
|
|
non-wide characters since wide characters have some issues with
|
|
string formating escape sequences sometimes.
|
|
|
|
\param cmd The command for which to obtain help text
|
|
*/
|
|
char *builtin_help_get( wchar_t *cmd );
|
|
|
|
/**
|
|
Initialize builtin help data
|
|
*/
|
|
void builtin_help_init();
|
|
|
|
/**
|
|
Destory builtin help data
|
|
*/
|
|
void builtin_help_destroy();
|
|
|
|
#endif
|