11 lines
229 B
C
11 lines
229 B
C
#ifndef PISH_H
|
|
#define PISH_H
|
|
|
|
#include "Common.h"
|
|
|
|
void Pish(void);
|
|
void ReadPishrc(CommandStruct* commandParent, CommandStruct *commandChild, char* inputString);
|
|
void RunChild(CommandStruct* commandChild, int* pipefd);
|
|
|
|
#endif
|