Subversion Repositories SvarDOS

Rev

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

Rev 397 Rev 399
Line 31... Line 31...
31
}
31
}
32
 
32
 
33
#include "cmd/_notimpl.c"
33
#include "cmd/_notimpl.c"
34
#include "cmd/cd.c"
34
#include "cmd/cd.c"
35
#include "cmd/del.c"
35
#include "cmd/del.c"
-
 
36
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
36
#include "cmd/dir.c"
37
#include "cmd/dir.c"
37
#include "cmd/exit.c"
38
#include "cmd/exit.c"
38
#include "cmd/mkdir.c"
39
#include "cmd/mkdir.c"
39
#include "cmd/path.c"
40
#include "cmd/path.c"
40
#include "cmd/prompt.c"
41
#include "cmd/prompt.c"
41
#include "cmd/rmdir.c"
42
#include "cmd/rmdir.c"
42
#include "cmd/set.c"
43
#include "cmd/set.c"
-
 
44
#include "cmd/type.c"
43
#include "cmd/ver.c"
45
#include "cmd/ver.c"
44
#include "cmd/verify.c"
46
#include "cmd/verify.c"
45
#include "cmd/type.c"
-
 
46
 
47
 
47
#include "cmd.h"
48
#include "cmd.h"
48
 
49
 
49
 
50
 
50
struct CMD_ID {
51
struct CMD_ID {
Line 80... Line 81...
80
  {"SET",     cmd_set},
81
  {"SET",     cmd_set},
81
  {"TIME",    cmd_notimpl},
82
  {"TIME",    cmd_notimpl},
82
  {"TYPE",    cmd_type},
83
  {"TYPE",    cmd_type},
83
  {"VER",     cmd_ver},
84
  {"VER",     cmd_ver},
84
  {"VERIFY",  cmd_verify},
85
  {"VERIFY",  cmd_verify},
85
  {"VOL",     cmd_notimpl},
86
  {"VOL",     cmd_vol},
86
  {NULL,      NULL}
87
  {NULL,      NULL}
87
};
88
};
88
 
89
 
89
 
90
 
90
/* NULL if cmdline is not matching an internal command, otherwise returns a
91
/* NULL if cmdline is not matching an internal command, otherwise returns a