cs252/lab3-src/simpleCommand.hh

17 lines
305 B
C++
Raw Permalink Normal View History

2018-10-25 14:45:56 -04:00
#ifndef simplcommand_h
#define simplecommand_h
struct SimpleCommand {
// Available space for arguments currently preallocated
int _numOfAvailableArguments;
// Number of arguments
int _numOfArguments;
char ** _arguments;
SimpleCommand();
void insertArgument( char * argument );
};
#endif