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-25 01:09:00 -05:00
|
|
|
void Execute(char* command);
|
|
|
|
char* GetInput(void);
|
2022-10-25 01:30:43 -05:00
|
|
|
void ParseInput(char* inputString, CommandStruct* command);
|
2022-10-10 18:55:22 -05:00
|
|
|
|
|
|
|
#endif
|