forked from KolibriOS/kolibrios
18 lines
199 B
C
18 lines
199 B
C
|
|
||
|
void cmd_alias(char arg[])
|
||
|
{
|
||
|
|
||
|
int result;
|
||
|
|
||
|
if (NULL == arg)
|
||
|
{
|
||
|
alias_list();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
result = alias_check(arg);
|
||
|
if ( ( 0 != result ) && ( -1 != result ) )
|
||
|
alias_add(arg);
|
||
|
|
||
|
}
|