Subversion Repositories Kolibri OS

Rev

Rev 6822 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6822 Rev 8827
Line 1... Line 1...
1
int cmd_about(char param[])
1
int cmd_about(char param[]) {
2
{
-
 
3
 
-
 
4
char message[] = {"Shell %s\n\r"};
-
 
5
 
-
 
6
printf(message, SHELL_VERSION); 
2
    printf(CMD_ABOUT_MSG, SHELL_VERSION); 
7
return TRUE;
3
    return TRUE;
8
}
4
}