Subversion Repositories Kolibri OS

Rev

Rev 6822 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. int cmd_alias(char arg[])
  3. {
  4.  
  5. int result;
  6.  
  7. if (NULL == arg)
  8.         {
  9.         alias_list();
  10.         return TRUE;
  11.         }
  12.  
  13. result = alias_check(arg);
  14.  
  15. if ( ( 0 != result ) && ( -1 != result ) )
  16.         alias_add(arg);
  17.  
  18. return TRUE;
  19. }
  20.