| 471 | } |
| 472 | |
| 473 | static void list_all_cmds_help_external_commands(void) |
| 474 | { |
| 475 | struct string_list others = STRING_LIST_INIT_DUP; |
| 476 | int i; |
| 477 | |
| 478 | list_all_other_cmds(&others); |
| 479 | if (others.nr) |
| 480 | printf("\n%s\n", _("External commands")); |
| 481 | for (i = 0; i < others.nr; i++) |
| 482 | printf(" %s\n", others.items[i].string); |
| 483 | string_list_clear(&others, 0); |
| 484 | } |
| 485 | |
| 486 | static void list_all_cmds_help_aliases(int longest) |
| 487 | { |
no test coverage detected