mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 14:35:47 +00:00
Functions shell_help_subcmd_print and shell_help_cmd_print are more generic. Now they can operate on command passed as an argument not hard coded active_cmd. Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordisemi.no>
34 lines
619 B
C
34 lines
619 B
C
/*
|
|
* 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. */
|
|
void shell_help_cmd_print(const struct shell *shell,
|
|
const struct shell_static_entry *cmd);
|
|
|
|
/* Function is printing subcommands and help string. */
|
|
void shell_help_subcmd_print(const struct shell *shell,
|
|
const struct shell_static_entry *cmd,
|
|
const char *description);
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SHELL_HELP__ */
|