You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
726 B
36 lines
726 B
/* |
|
* Copyright (c) 2018 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef SHELL_HELP_H__ |
|
#define SHELL_HELP_H__ |
|
|
|
#include <zephyr/shell/shell.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
/* 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); |
|
|
|
/** |
|
* @} |
|
*/ |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif /* SHELL_HELP__ */
|
|
|