2022-10-19 21:44:28 -05:00
|
|
|
#ifndef INTEGRATED_H
|
|
|
|
#define INTEGRATED_H
|
|
|
|
|
2022-10-25 01:09:00 -05:00
|
|
|
#include "Common.h"
|
|
|
|
|
2022-10-27 03:47:19 -05:00
|
|
|
const char* GetHomeDir(void);
|
2022-10-27 04:37:16 -05:00
|
|
|
void IntegratedCheck(CommandStruct* command);
|
2022-10-27 05:38:12 -05:00
|
|
|
void GetInput(char* inputString);
|
|
|
|
void ParseInput(char* inputString, CommandStruct* command);
|
2022-10-27 03:47:19 -05:00
|
|
|
void ReadPishrc(CommandStruct* command, char* inputString);
|
2022-10-19 21:44:28 -05:00
|
|
|
|
|
|
|
#endif
|