esh_history.c 148 B

123456789
  1. #include "esh_history.h"
  2. void addCommandToHistory(char* command) {
  3. // TODO
  4. }
  5. char* receiveCommandFromHistory(int step = 1) {
  6. // TODO
  7. }