pish/include/Integrated.h
Samantha Boyer bef7952abf add h files
2022-10-28 23:01:31 -05:00

18 lines
551 B
C
Executable File

#ifndef INTEGRATED_H
#define INTEGRATED_H
#include "Common.h"
const char* GetHomeDir(void);
void CheckRedirection(char *inputString, 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 ParseInput(char* inputString, CommandStruct* command, char *symbol);
void ReadPishrc(CommandStruct* command, char* inputString);
void ioRedirection(CommandStruct *command);
#endif