| 48 | static struct menu *rootEntry; |
| 49 | |
| 50 | static void print_help(struct menu *menu) |
| 51 | { |
| 52 | struct gstr help = str_new(); |
| 53 | |
| 54 | menu_get_ext_help(menu, &help); |
| 55 | |
| 56 | printf("\n%s\n", str_get(&help)); |
| 57 | str_free(&help); |
| 58 | } |
| 59 | |
| 60 | static void strip(char *str) |
| 61 | { |
no test coverage detected