90s/include/history.h
2024-07-01 17:40:47 +01:00

11 lines
207 B
C

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