Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1664 → Rev 1665

/programs/system/shell/cmd/cmd_rm.c
0,0 → 1,50
 
int cmd_rm(char file[])
{
 
kol_struct70 k70;
char temp[256];
unsigned result;
 
if (NULL == file)
{
printf (" rm filename\n\r");
return FALSE;
}
 
if ( '/' == file[0])
{
strcpy(temp, file);
 
if ( !file_check(temp) )
{
return FALSE;
}
}
else
{
strcpy(temp, cur_dir);
strcat(temp, file);
if ( !file_check(temp) )
{
return FALSE;
}
}
 
k70.p00 = 8;
k70.p04 = 0;
k70.p08 = 0;
k70.p12 = 0;
k70.p16 = 0;
k70.p20 = 0;
k70.p21 = temp;
 
result = kol_file_70(&k70);
 
if (0 == result)
return TRUE;
else
return FALSE;
 
}