| * Copyright (c) 2018 Nordic Semiconductor ASA |
| * SPDX-License-Identifier: Apache-2.0 |
| #include <zephyr/shell/shell.h> |
| /* Function is printing command help string. */ |
| void z_shell_help_cmd_print(const struct shell *sh, |
| const struct shell_static_entry *cmd); |
| /* Function is printing subcommands and help string. */ |
| void z_shell_help_subcmd_print(const struct shell *sh, |
| const struct shell_static_entry *cmd, |
| const char *description); |
| /* Function returns true if str == -h or --help */ |
| bool z_shell_help_request(const char *str); |
| #endif /* SHELL_HELP__ */ |