Subversion Repositories SvarDOS

Rev

Rev 357 | Rev 372 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
352 mateuszvis 1
#ifndef CMD_H
2
#define CMD_H
3
 
364 mateuszvis 4
/* process internal commands */
5
int cmd_process(unsigned short env_seg, const char far *cmdline);
352 mateuszvis 6
 
364 mateuszvis 7
/* explodes a command into an array of arguments where last arg is NULL
8
 * returns number of args */
9
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist);
10
 
352 mateuszvis 11
#endif