2008-07-30 01:16:58 +02:00
|
|
|
#ifndef HELP_H
|
|
|
|
#define HELP_H
|
|
|
|
|
|
|
|
struct cmdnames {
|
|
|
|
int alloc;
|
|
|
|
int cnt;
|
|
|
|
struct cmdname {
|
2008-08-31 15:50:23 +02:00
|
|
|
size_t len; /* also used for similarity index in help.c */
|
2008-07-30 01:16:58 +02:00
|
|
|
char name[FLEX_ARRAY];
|
|
|
|
} **names;
|
|
|
|
};
|
|
|
|
|
2008-08-02 10:08:38 +02:00
|
|
|
static inline void mput_char(char c, unsigned int num)
|
|
|
|
{
|
|
|
|
while(num--)
|
|
|
|
putchar(c);
|
|
|
|
}
|
|
|
|
|
2008-08-28 19:15:33 +02:00
|
|
|
void load_command_list(const char *prefix,
|
2008-07-30 01:16:58 +02:00
|
|
|
struct cmdnames *main_cmds,
|
|
|
|
struct cmdnames *other_cmds);
|
|
|
|
void add_cmdname(struct cmdnames *cmds, const char *name, int len);
|
|
|
|
/* Here we require that excludes is a sorted list. */
|
|
|
|
void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
|
|
|
|
int is_in_cmdlist(struct cmdnames *c, const char *s);
|
2008-08-28 19:15:33 +02:00
|
|
|
void list_commands(const char *title, struct cmdnames *main_cmds,
|
|
|
|
struct cmdnames *other_cmds);
|
2008-07-30 01:16:58 +02:00
|
|
|
|
|
|
|
#endif /* HELP_H */
|