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