- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
8 lines
114 B
C
8 lines
114 B
C
#include <shell_api.h>
|
|
|
|
void shell_cls()
|
|
{
|
|
__shell_init();
|
|
*__shell_shm = SHELL_CLS;
|
|
__SHELL_WAIT();
|
|
} |