2018-11-27 00:09:56 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SHELL_HELP_H__
|
|
|
|
#define SHELL_HELP_H__
|
|
|
|
|
|
|
|
#include <shell/shell.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Function is printing command help string. */
|
2020-12-06 18:45:42 +08:00
|
|
|
void z_shell_help_cmd_print(const struct shell *shell,
|
|
|
|
const struct shell_static_entry *cmd);
|
2018-11-27 00:09:56 +08:00
|
|
|
|
2020-10-01 16:38:00 +08:00
|
|
|
/* Function is printing subcommands and help string. */
|
2020-12-06 18:45:42 +08:00
|
|
|
void z_shell_help_subcmd_print(const struct shell *shell,
|
|
|
|
const struct shell_static_entry *cmd,
|
|
|
|
const char *description);
|
2018-11-27 00:09:56 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SHELL_HELP__ */
|