Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1647 → Rev 2617

/programs/system/shell/shell.c
66,6 → 66,17
 
/// ===========================================================
 
void file_not_found(char file[])
{
#if LANG_ENG
printf (" File '%s' not found.\n\r", file);
#elif LANG_RUS
printf (" ” ©« '%s' ­¥ ­ ©¤¥­.\n\r", file);
#endif
}
 
/// ===========================================================
 
int iswhite(char c)
{
return ((' ' == c) || ('\t' == c) || (13 == c) || (10 == c));