90s/history.h

9 lines
151 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);
#endif