forked from KolibriOS/kolibrios
5528e3a3d5
git-svn-id: svn://kolibrios.org@4016 a494cfbc-eb01-0410-851d-a64ba20cac60
21 lines
323 B
C
21 lines
323 B
C
|
|
int cmd_sleep(char param[])
|
|
{
|
|
int delay;
|
|
|
|
if (!strlen(param))
|
|
{
|
|
#if LANG_ENG
|
|
printf(" sleep <time in the 1/100 of second>\n\r");
|
|
#elif LANG_RUS
|
|
printf(" sleep <¨â¥à¢ « ¢ á®âëå ¤®«ïx ᥪã¤ë>\n\r");
|
|
#endif
|
|
return TRUE;
|
|
}
|
|
|
|
delay = _atoi(param);
|
|
kol_sleep((unsigned)delay);
|
|
return TRUE;
|
|
}
|
|
|