Subversion Repositories SvarDOS

Rev

Rev 369 | Rev 374 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 369 Rev 372
Line 8... Line 8...
8
 *
8
 *
9
 * Type CD drive: to display the current directory in the specified drive.
9
 * Type CD drive: to display the current directory in the specified drive.
10
 * Type CD without parameters to display the current drive and directory.
10
 * Type CD without parameters to display the current drive and directory.
11
 */
11
 */
12
 
12
 
13
static int cmd_cd(const struct cmd_funcparam *p) {
13
static int cmd_cd(struct cmd_funcparam *p) {
14
  /* two arguments max */
14
  /* two arguments max */
15
  if (p->argc > 1) {
15
  if (p->argc > 1) {
16
    outputnl("Too many parameters");
16
    outputnl("Too many parameters");
17
  }
17
  }
18
 
18