90s/history.h

10 lines
177 B
C
Raw Normal View History

2024-01-31 02:02:32 +01:00
#ifndef HISTORY_H_
#define HISTORY_H_
void save_command_history(char *command);
void check_history_file();
char *read_command(int direction);
char **get_all_history();
2024-01-31 02:02:32 +01:00
#endif