shell_help.h 725 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_HELP_H__
  7. #define SHELL_HELP_H__
  8. #include <shell/shell.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* Function is printing command help string. */
  13. void z_shell_help_cmd_print(const struct shell *shell,
  14. const struct shell_static_entry *cmd);
  15. /* Function is printing subcommands and help string. */
  16. void z_shell_help_subcmd_print(const struct shell *shell,
  17. const struct shell_static_entry *cmd,
  18. const char *description);
  19. /* Function returns true if str == -h or --help */
  20. bool z_shell_help_request(const char *str);
  21. /**
  22. * @}
  23. */
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* SHELL_HELP__ */