14 lines
215 B
C
14 lines
215 B
C
|
/*
|
||
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef SHELL_H
|
||
|
#define SHELL_H
|
||
|
|
||
|
void shell_init(void);
|
||
|
void shell_kick(void);
|
||
|
|
||
|
#endif /* SHELL_H */
|