#include "esh_types.h" #ifndef ESH_HISTORY_H #define ESH_HISTORY_H void EShAddCommandToHistory(char* command); // saves command copy to history list. char* EShReceiveCommandFromHistory(int step); // returns copy of command, executed _step_ steps ago. #endif // ESH_HISTORY_H