kolibrios/programs/develop/ktcc/trunk/lib/libshell/shell_putc.c

9 lines
148 B
C
Raw Normal View History

#include <shell_api.h>
void shell_putc(char c)
{
__shell_init();
*__shell_shm = SHELL_PUTC;
*(__shell_shm+1) = c;
__SHELL_WAIT();
}