90s

Minimalist, customizable shell written in C99 with syntax highlighting
git clone https://codeberg.org/night0721/90s
Log | Files | Refs | README | LICENSE

history.h (207B)


      1 #ifndef HISTORY_H_
      2 #define HISTORY_H_
      3 
      4 extern int cmd_count;
      5 
      6 void save_command_history(char *args);
      7 void check_history_file();
      8 char *read_command(int direction);
      9 char **get_all_history(bool check);
     10 
     11 #endif