added EV , fixed input and output

This commit is contained in:
Samantha Boyer
2022-10-29 22:55:36 -05:00
parent a0d601f1e3
commit 0062cd1cc5
3 changed files with 10 additions and 8 deletions
+2 -1
View File
@@ -6,9 +6,10 @@ const char* GetHomeDir(void);
typedef struct CommandStruct {
char* argv[100]; // Max 100 commands
int argc;
char* envp[20]; // Enviroment Varibles
} CommandStruct;
void CopyCommandStruct(CommandStruct* oldCommand, CommandStruct* newCommand, int start, int end);
void ResetCommandStruct(CommandStruct* command);
#endif
#endif