Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 469 → Rev 470

/svarcom/trunk/command.c
523,7 → 523,7
* rmod counter on success. returns NULL on failure.
* buff must start with a length byte but the returned pointer must
* skip it. */
char far *getbatcmd(char far *buff, struct rmod_props far *rmod) {
static char far *getbatcmd(char *buff, struct rmod_props far *rmod) {
unsigned short i;
buff++; /* make room for the len byte */
/* TODO temporary hack to display a dummy message */
543,6 → 543,10
/* */
rmod->batnextline++;
if (rmod->batnextline == 0) rmod->batfile[0] = 0; /* max line count reached */
 
/* output command on screen if echo on */
if (rmod->echoflag != 0) outputnl(buff);
 
return(buff);
}