Pish now runs, Redirection only prints, doesn't affect output

This commit is contained in:
2022-10-29 01:10:12 -05:00
parent bef7952abf
commit 4b3f4c1433
4 changed files with 48 additions and 32 deletions
+3 -2
View File
@@ -4,14 +4,15 @@
#include "Common.h"
const char* GetHomeDir(void);
void CheckRedirection(char *inputString, CommandStruct *command);
void CheckRedirection(CommandStruct* command);
int IntegratedCheck(CommandStruct* command);
void GetInput(char* inputString);
void append(char *input, char *file);
void input(char *command);
void ExecPipe();
void output(char *command);
void SplitInput(char* inputString, CommandStruct* command);
void ParseInput(char* inputString, CommandStruct* command, char *symbol);
void ReadPishrc(CommandStruct* command, char* inputString);
void ioRedirection(CommandStruct *command);
void ioRedirection(CommandStruct* command);
#endif