Subversion Repositories SvarDOS

Rev

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

Rev 380 Rev 382
Line 27... Line 27...
27
#include "cmd/exit.c"
27
#include "cmd/exit.c"
28
#include "cmd/path.c"
28
#include "cmd/path.c"
29
#include "cmd/prompt.c"
29
#include "cmd/prompt.c"
30
#include "cmd/set.c"
30
#include "cmd/set.c"
31
#include "cmd/ver.c"
31
#include "cmd/ver.c"
-
 
32
#include "cmd/type.c"
32
 
33
 
33
#include "cmd.h"
34
#include "cmd.h"
34
 
35
 
35
 
36
 
36
struct CMD_ID {
37
struct CMD_ID {
Line 63... Line 64...
63
  {"REN",     cmd_notimpl},
64
  {"REN",     cmd_notimpl},
64
  {"RENAME",  cmd_notimpl},
65
  {"RENAME",  cmd_notimpl},
65
  {"RMDIR",   cmd_notimpl},
66
  {"RMDIR",   cmd_notimpl},
66
  {"SET",     cmd_set},
67
  {"SET",     cmd_set},
67
  {"TIME",    cmd_notimpl},
68
  {"TIME",    cmd_notimpl},
68
  {"TYPE",    cmd_notimpl},
69
  {"TYPE",    cmd_type},
69
  {"VER",     cmd_ver},
70
  {"VER",     cmd_ver},
70
  {"VERIFY",  cmd_notimpl},
71
  {"VERIFY",  cmd_notimpl},
71
  {"VOL",     cmd_notimpl},
72
  {"VOL",     cmd_notimpl},
72
  {NULL,      NULL}
73
  {NULL,      NULL}
73
};
74
};