Files
kolibrios/programs/develop/ktcc/trunk/lib/libshell/shell_getc.c
Egor00f a5ef404043 libc.obj: add output to shell.
sometimes it lose chars
2026-02-22 01:07:12 +05:00

9 lines
145 B
C

#include <shell_api.h>
char shell_getc()
{
__shell_init();
*__shell_shm = SHELL_GETC;
__SHELL_WAIT();
return *(__shell_shm+1);
}