aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin_help.h
blob: c831b3e41e19c7baad6816ae6c2bc27a886e6191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** \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