17 lines
470 B
C
Executable File
17 lines
470 B
C
Executable File
#ifndef INTEGRATED_H
|
|
#define INTEGRATED_H
|
|
|
|
#include "Common.h"
|
|
|
|
const char* GetHomeDir(void);
|
|
void ioRedirection(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);
|
|
void ReadPishrc(CommandStruct* command, char* inputString);
|
|
|
|
#endif |