]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/lib/subcmd/help.h
Merge tag 'iio-fixes-for-4.12a' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / tools / lib / subcmd / help.h
CommitLineData
1843b4e0
JP
1#ifndef __SUBCMD_HELP_H
2#define __SUBCMD_HELP_H
07800601 3
2f4ce5ec 4#include <sys/types.h>
7a8ef4c4 5#include <stdio.h>
2f4ce5ec 6
07800601 7struct cmdnames {
f37a291c
IM
8 size_t alloc;
9 size_t cnt;
07800601
IM
10 struct cmdname {
11 size_t len; /* also used for similarity index in help.c */
2f4ce5ec 12 char name[];
07800601
IM
13 } **names;
14};
15
16static inline void mput_char(char c, unsigned int num)
17{
18 while(num--)
19 putchar(c);
20}
21
22void load_command_list(const char *prefix,
23 struct cmdnames *main_cmds,
24 struct cmdnames *other_cmds);
f37a291c 25void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
5feaac24
JP
26void clean_cmdnames(struct cmdnames *cmds);
27int cmdname_compare(const void *a, const void *b);
28void uniq(struct cmdnames *cmds);
07800601
IM
29/* Here we require that excludes is a sorted list. */
30void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
31int is_in_cmdlist(struct cmdnames *c, const char *s);
32void list_commands(const char *title, struct cmdnames *main_cmds,
33 struct cmdnames *other_cmds);
34
1843b4e0 35#endif /* __SUBCMD_HELP_H */