Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8628 → Rev 8629

/contrib/kolibri-libc/source/shell_api/shell_gets.c
0,0 → 1,9
#include "shell.h"
 
void shell_gets(char *str)
{
__shell_init();
*__shell_shm = SHELL_GETS;
SHELL_WAIT();
strcpy(str, __shell_shm+1);
}