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