123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef SHELL_HELP_H__
- #define SHELL_HELP_H__
- #include <shell/shell.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- void z_shell_help_cmd_print(const struct shell *shell,
- const struct shell_static_entry *cmd);
- void z_shell_help_subcmd_print(const struct shell *shell,
- const struct shell_static_entry *cmd,
- const char *description);
- bool z_shell_help_request(const char *str);
- #ifdef __cplusplus
- }
- #endif
- #endif
|