Subversion Repositories SvarDOS

Rev

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

Rev 1095 Rev 1098
Line 33... Line 33...
33
  char *buff2 = p->BUFFER + 1024;
33
  char *buff2 = p->BUFFER + 1024;
34
  unsigned short i, fnameoffset;
34
  unsigned short i, fnameoffset;
35
  struct DTA *dta = (void *)0x80; /* use default DTA in PSP */
35
  struct DTA *dta = (void *)0x80; /* use default DTA in PSP */
36
 
36
 
37
  if (cmd_ishlp(p)) {
37
  if (cmd_ishlp(p)) {
38
    nls_outputnl(25,0); /* "Renames a file or a set of files" */
38
    nls_outputnl(25,0); /* "Renames one or more files or directories." */
39
    outputnl("");
39
    outputnl("");
40
    nls_outputnl(25,1); /* "RENAME [drive:][path]filename1 filename2" */
40
    nls_outputnl(25,1); /* "RENAME [drive:][path]oldname newname" */
41
    nls_outputnl(25,2); /* "REN [drive:][path]filename1 filename2" */
41
    nls_outputnl(25,2); /* "REN [drive:][path]oldname newname" */
42
    outputnl("");
42
    outputnl("");
43
    nls_outputnl(25,3); /* "Note that you cannot specify a new drive or (...)" */
43
    nls_outputnl(25,3); /* "Note that you cannot specify a new drive or (...)" */
44
    return(CMD_OK);
44
    return(CMD_OK);
45
  }
45
  }
46
 
46