forked from KolibriOS/kolibrios
- Added shell apis(shell_api.h) - Added functions for working with a named shared memory area(ksys.h). - Fixed itoa git-svn-id: svn://kolibrios.org@8629 a494cfbc-eb01-0410-851d-a64ba20cac60
8 lines
108 B
C
8 lines
108 B
C
#include "shell.h"
|
|
|
|
void shell_cls()
|
|
{
|
|
__shell_init();
|
|
*__shell_shm = SHELL_CLS;
|
|
SHELL_WAIT();
|
|
} |