1 /** @file
2  * @brief Network shell handler
3  *
4  * This is not to be included by the application.
5  */
6 
7 /*
8  * Copyright (c) 2018 Intel Corporation
9  *
10  * SPDX-License-Identifier: Apache-2.0
11  */
12 
13 #ifndef __NET_SHELL_H
14 #define __NET_SHELL_H
15 
16 #if defined(CONFIG_NET_SHELL)
17 extern int net_shell_init(void);
18 #else
net_shell_init(void)19 static inline int net_shell_init(void)
20 {
21 	return 0;
22 }
23 #endif
24 
25 #endif /* __NET_SHELL_H */
26