esh_history.h 287 B

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