// Ben Harris #ifndef _PARSE_ #define _PARSE_ #include #include using namespace std; // method definitions // command struct struct command { char*** args; bool background; string piping; string infile; string outfile; }; void print_cmd(command *cmd); command *parse(vector args); #endif