mtd: nand: sunxi: switch to mtd_ooblayout_ops
[deliverable/linux.git] / tools / lib / subcmd / help.h
CommitLineData
1843b4e0
JP
1#ifndef __SUBCMD_HELP_H
2#define __SUBCMD_HELP_H
07800601 3
2f4ce5ec
JP
4#include <sys/types.h>
5
07800601 6struct cmdnames {
f37a291c
IM
7 size_t alloc;
8 size_t cnt;
07800601
IM
9 struct cmdname {
10 size_t len; /* also used for similarity index in help.c */
2f4ce5ec 11 char name[];
07800601
IM
12 } **names;
13};
14
15static inline void mput_char(char c, unsigned int num)
16{
17 while(num--)
18 putchar(c);
19}
20
21void load_command_list(const char *prefix,
22 struct cmdnames *main_cmds,
23 struct cmdnames *other_cmds);
f37a291c 24void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
5feaac24
JP
25void clean_cmdnames(struct cmdnames *cmds);
26int cmdname_compare(const void *a, const void *b);
27void uniq(struct cmdnames *cmds);
07800601
IM
28/* Here we require that excludes is a sorted list. */
29void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
30int is_in_cmdlist(struct cmdnames *c, const char *s);
31void list_commands(const char *title, struct cmdnames *main_cmds,
32 struct cmdnames *other_cmds);
33
1843b4e0 34#endif /* __SUBCMD_HELP_H */
This page took 0.364522 seconds and 5 git commands to generate.