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.
16 lines
506 B
16 lines
506 B
/* |
|
* Copyright (c) 2024 Meta |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_ |
|
#define ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_ |
|
|
|
#include <zephyr/shell/shell.h> |
|
|
|
/* Add command to the set of POSIX subcommands, see `SHELL_SUBCMD_ADD` */ |
|
#define POSIX_CMD_ADD(_syntax, _subcmd, _help, _handler, _mand, _opt) \ |
|
SHELL_SUBCMD_ADD((posix), _syntax, _subcmd, _help, _handler, _mand, _opt); |
|
|
|
#endif /* ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_ */
|
|
|