2022-10-10 18:55:22 -05:00
|
|
|
#ifndef PISH_H
|
|
|
|
#define PISH_H
|
|
|
|
|
2022-10-25 01:09:00 -05:00
|
|
|
#include "Common.h"
|
|
|
|
|
2022-10-10 18:55:22 -05:00
|
|
|
void Pish(void);
|
2022-10-29 05:14:23 -05:00
|
|
|
void ReadPishrc(CommandStruct* commandParent, CommandStruct *commandChild, char* inputString);
|
2022-10-29 05:37:29 -05:00
|
|
|
void RunChild(CommandStruct* commandChild, int* pipefd);
|
2022-10-10 18:55:22 -05:00
|
|
|
|
|
|
|
#endif
|