Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 363 → Rev 364

/svarcom/cmd.h
1,6 → 1,11
#ifndef CMD_H
#define CMD_H
 
int cmd_process(int argc, const char **argv, unsigned short env_seg, const char far *cmdline);
/* process internal commands */
int cmd_process(unsigned short env_seg, const char far *cmdline);
 
/* explodes a command into an array of arguments where last arg is NULL
* returns number of args */
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist);
 
#endif