781f3f0fab
- 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
142 B
C
9 lines
142 B
C
#include "shell.h"
|
|
|
|
void shell_putc(char c)
|
|
{
|
|
__shell_init();
|
|
*__shell_shm = SHELL_PUTC;
|
|
*(__shell_shm+1) = c;
|
|
SHELL_WAIT();
|
|
} |