Subversion Repositories SvarDOS

Rev

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

Rev 369 Rev 372
Line 3... Line 3...
3
 *
3
 *
4
 * Quits the COMMAND.COM program (command interpreter)
4
 * Quits the COMMAND.COM program (command interpreter)
5
 *
5
 *
6
 */
6
 */
7
 
7
 
8
static int cmd_exit(const struct cmd_funcparam *p) {
8
static int cmd_exit(struct cmd_funcparam *p) {
9
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
9
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
10
    output("EXIT\r\n"
10
    output("EXIT\r\n"
11
           "\r\n"
11
           "\r\n"
12
           "Quits the COMMAND.COM program (command interpreter)\r\n"
12
           "Quits the COMMAND.COM program (command interpreter)\r\n"
13
           "\r\n");
13
           "\r\n");