mshell/include/history.h

8 lines
137 B
C

#ifndef _HISTORY_H
#define _HISTORY_H
void append_to_history(char *line);
void clear_search_tree();
char *previous_hist_entry();
#endif