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
33
34
35
| // Function to display help text
|
| #include "toys.h"
|
| #include "generated/help.h"
|
| #undef NEWTOY
| #undef OLDTOY
| #define NEWTOY(name,opt,flags) HELP_##name "\0"
| #if CFG_TOYBOX
| #define OLDTOY(name,oldname,flags) "\xff" #oldname "\0"
| #else
| #define OLDTOY(name, oldname, flags) HELP_##oldname "\0"
| #endif
| static char *help_data =
| #include "generated/newtoys.h"
| ;
|
| void show_help(FILE *out)
| {
| int i = toys.which-toy_list;
| char *s;
|
| if (CFG_TOYBOX_HELP) {
| for (;;) {
| s = help_data;
| while (i--) s += strlen(s) + 1;
| // If it's an alias, restart search for real name
| if (*s != 255) break;
| i = toy_find(++s)-toy_list;
| }
|
| fprintf(out, "%s", s);
| }
| }
|
|