Subversion Repositories SvarDOS

Rev

Rev 957 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 957 Rev 989
Line 31... Line 31...
31
 *                     batch program.
31
 *                     batch program.
32
 */
32
 */
33
 
33
 
34
static enum cmd_result cmd_call(struct cmd_funcparam *p) {
34
static enum cmd_result cmd_call(struct cmd_funcparam *p) {
35
  if (cmd_ishlp(p)) {
35
  if (cmd_ishlp(p)) {
36
    outputnl("Calls one batch program from another");
36
    nls_outputnl(13,0); /* "Calls one batch program from another" */
37
    outputnl("");
37
    outputnl("");
38
    outputnl("CALL [drive:][path]filename [batch-parameters]");
38
    nls_outputnl(13,1); /* "CALL [drive:][path]filename [batch-parameters]" */
39
    return(CMD_OK);
39
    return(CMD_OK);
40
  }
40
  }
41
 
41
 
42
  /* no argument? do nothing */
42
  /* no argument? do nothing */
43
  if (p->argc == 0) return(CMD_OK);
43
  if (p->argc == 0) return(CMD_OK);