Files
org-hyperion-cules/history.h
Jan Jaeger 439bdbca92 Remove subversion $Id$ tag
Update copyright statement to 2012
2012-03-24 18:41:51 +11:00

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