90s/history.h
2024-02-09 01:18:14 +00:00

9 lines
184 B
C

#ifndef HISTORY_H_
#define HISTORY_H_
void save_command_history(char *args);
void check_history_file();
char *read_command(int direction);
char **get_all_history(bool check);
#endif