mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-13 07:25:22 +02:00
23 lines
751 B
C
23 lines
751 B
C
/* HISTORY.H (c) Copyright Roger Bowler, 1999-2012 */
|
|
/* Hercules Command History Processes */
|
|
/* */
|
|
/* Released under "The Q Public License Version 1" */
|
|
/* (http://www.hercules-390.org/herclic.html) as modifications to */
|
|
/* Hercules. */
|
|
|
|
#ifndef HISTORY_H
|
|
#define HISTORY_H
|
|
|
|
extern int history_requested;
|
|
extern char *historyCmdLine;
|
|
|
|
int history_init();
|
|
int history_add(char *cmdline);
|
|
int history_show();
|
|
int history_absolute_line(int x);
|
|
int history_relative_line(int x);
|
|
int history_next(void);
|
|
int history_prev(void);
|
|
int history_remove(void);
|
|
#endif
|