1 /* HISTORY.H    (c) Copyright Volker Bandke, 2003-2009               */
2 /*              Hercules Command History header                      */
3 
4 #ifndef HISTORY_H
5 #define HISTORY_H
6 
7 extern int history_requested;
8 extern char *historyCmdLine;
9 
10 int history_init();
11 int history_add(char *cmdline);
12 int history_show();
13 int history_absolute_line(int x);
14 int history_relative_line(int x);
15 int history_next(void);
16 int history_prev(void);
17 int history_remove(void);
18 #endif
19