Subversion Repositories SvarDOS

Rev

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

Rev 382 Rev 385
Line 23... Line 23...
23
 
23
 
24
#include "cmd/_notimpl.c"
24
#include "cmd/_notimpl.c"
25
#include "cmd/cd.c"
25
#include "cmd/cd.c"
26
#include "cmd/dir.c"
26
#include "cmd/dir.c"
27
#include "cmd/exit.c"
27
#include "cmd/exit.c"
-
 
28
#include "cmd/mkdir.c"
28
#include "cmd/path.c"
29
#include "cmd/path.c"
29
#include "cmd/prompt.c"
30
#include "cmd/prompt.c"
-
 
31
#include "cmd/rmdir.c"
30
#include "cmd/set.c"
32
#include "cmd/set.c"
31
#include "cmd/ver.c"
33
#include "cmd/ver.c"
32
#include "cmd/type.c"
34
#include "cmd/type.c"
33
 
35
 
34
#include "cmd.h"
36
#include "cmd.h"
Line 53... Line 55...
53
  {"ECHO",    cmd_notimpl},
55
  {"ECHO",    cmd_notimpl},
54
  {"ERASE",   cmd_notimpl},
56
  {"ERASE",   cmd_notimpl},
55
  {"EXIT",    cmd_exit},
57
  {"EXIT",    cmd_exit},
56
  {"LH",      cmd_notimpl},
58
  {"LH",      cmd_notimpl},
57
  {"LOADHIGH",cmd_notimpl},
59
  {"LOADHIGH",cmd_notimpl},
58
  {"MD",      cmd_notimpl},
60
  {"MD",      cmd_mkdir},
59
  {"MKDIR",   cmd_notimpl},
61
  {"MKDIR",   cmd_mkdir},
60
  {"PAUSE",   cmd_notimpl},
62
  {"PAUSE",   cmd_notimpl},
61
  {"PATH",    cmd_path},
63
  {"PATH",    cmd_path},
62
  {"PROMPT",  cmd_prompt},
64
  {"PROMPT",  cmd_prompt},
63
  {"RD",      cmd_notimpl},
65
  {"RD",      cmd_rmdir},
64
  {"REN",     cmd_notimpl},
66
  {"REN",     cmd_notimpl},
65
  {"RENAME",  cmd_notimpl},
67
  {"RENAME",  cmd_notimpl},
66
  {"RMDIR",   cmd_notimpl},
68
  {"RMDIR",   cmd_rmdir},
67
  {"SET",     cmd_set},
69
  {"SET",     cmd_set},
68
  {"TIME",    cmd_notimpl},
70
  {"TIME",    cmd_notimpl},
69
  {"TYPE",    cmd_type},
71
  {"TYPE",    cmd_type},
70
  {"VER",     cmd_ver},
72
  {"VER",     cmd_ver},
71
  {"VERIFY",  cmd_notimpl},
73
  {"VERIFY",  cmd_notimpl},