90s/history.h
2024-01-31 01:02:32 +00:00

8 lines
151 B
C

#ifndef HISTORY_H_
#define HISTORY_H_
void save_command_history(char *command);
void check_history_file();
char *read_command(int direction);
#endif