Subversion Repositories SvarDOS

Rev

Rev 421 | Rev 479 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 421 Rev 449
Line 23... Line 23...
23
 */
23
 */
24
 
24
 
25
#ifndef CMD_H
25
#ifndef CMD_H
26
#define CMD_H
26
#define CMD_H
27
 
27
 
-
 
28
#include "rmodinit.h"
-
 
29
 
28
/* process internal commands */
30
/* process internal commands */
29
int cmd_process(unsigned short env_rmod, unsigned short env_seg, const char far *cmdline, char *BUFFER);
31
int cmd_process(struct rmod_props far *rmod, unsigned short env_seg, const char far *cmdline, char *BUFFER);
30
 
32
 
31
/* explodes a command into an array of arguments where last arg is NULL
33
/* explodes a command into an array of arguments where last arg is NULL
32
 * returns number of args */
34
 * returns number of args */
33
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist);
35
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist);
34
 
36