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
9 lines
139 B
C
9 lines
139 B
C
#include "shell.h"
|
|
|
|
char shell_getc()
|
|
{
|
|
__shell_init();
|
|
*__shell_shm = SHELL_GETC;
|
|
SHELL_WAIT();
|
|
return *(__shell_shm+1);
|
|
} |