Print the maintenance command help output. */
| 1240 | /** Print the maintenance command help output. |
| 1241 | */ |
| 1242 | void |
| 1243 | print_cmd_help() |
| 1244 | { |
| 1245 | for (unsigned i = 0; i < countof(commands); i++) { |
| 1246 | printf("%25s %s\n", commands[i].n, commands[i].d); |
| 1247 | } |
| 1248 | } |
| 1249 | |
| 1250 | int |
| 1251 | cmd_help(char *cmd) |