zephyr/subsys/net/lib/shell/net_shell.h
Jukka Rissanen 56c1bb813f net: shell: Move the shell code to subsys/net/lib/shell
This is preparation commit that moves the net shell code to
subsys/net/lib/shell directory. The following commits will
then refactor the code in net_shell.c to smaller and more
manageable pieces.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
2023-10-23 10:40:28 +02:00

26 lines
393 B
C

/** @file
* @brief Network shell handler
*
* This is not to be included by the application.
*/
/*
* Copyright (c) 2018 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __NET_SHELL_H
#define __NET_SHELL_H
#if defined(CONFIG_NET_SHELL)
extern int net_shell_init(void);
#else
static inline int net_shell_init(void)
{
return 0;
}
#endif
#endif /* __NET_SHELL_H */