Subversion Repositories SvarDOS

Rev

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

Rev 372 Rev 379
Line 25... Line 25...
25
#include "cmd/dir.c"
25
#include "cmd/dir.c"
26
#include "cmd/exit.c"
26
#include "cmd/exit.c"
27
#include "cmd/path.c"
27
#include "cmd/path.c"
28
#include "cmd/prompt.c"
28
#include "cmd/prompt.c"
29
#include "cmd/set.c"
29
#include "cmd/set.c"
-
 
30
#include "cmd/ver.c"
30
 
31
 
31
#include "cmd.h"
32
#include "cmd.h"
32
 
33
 
33
 
34
 
34
struct CMD_ID {
35
struct CMD_ID {
Line 42... Line 43...
42
  {"DIR",     cmd_dir},
43
  {"DIR",     cmd_dir},
43
  {"EXIT",    cmd_exit},
44
  {"EXIT",    cmd_exit},
44
  {"PATH",    cmd_path},
45
  {"PATH",    cmd_path},
45
  {"PROMPT",  cmd_prompt},
46
  {"PROMPT",  cmd_prompt},
46
  {"SET",     cmd_set},
47
  {"SET",     cmd_set},
-
 
48
  {"VER",     cmd_ver},
47
  {NULL,      NULL}
49
  {NULL,      NULL}
48
};
50
};
49
 
51
 
50
 
52
 
51
/* NULL if cmdline is not matching an internal command, otherwise returns a
53
/* NULL if cmdline is not matching an internal command, otherwise returns a