Subversion Repositories SvarDOS

Rev

Rev 421 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
400 mateuszvis 1
/*
2
 * rem
3
 */
4
 
5
static int cmd_rem(struct cmd_funcparam *p) {
6
  /* help screen ONLY if /? is the only argument - I do not want to output
7
   * help for ex. for "REM mouse.com /?" */
8
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
9
    outputnl("Records comments (remarks) in a batch file or CONFIG.SYS");
10
    outputnl("");
11
    outputnl("REM [comment]");
12
  }
13
  return(-1);
14
}