1 /*
2  * history.h: header for history.c
3  *
4  * Copyright 1990 Michael Sandrof
5  * Copyright 1997 EPIC Software Labs
6  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
7  */
8 
9 #ifndef __history_h__
10 #define __history_h__
11 
12 	BUILT_IN_COMMAND(history);
13 	void	set_history_size 	(const void *);
14 	void	add_to_history 		(char *);
15 	void	get_history 		(int);
16 	char *	do_history 		(char *, char *);
17 	void	shove_to_history 	(char, char *);
18 	void    abort_history_browsing	(int);
19 
20 /* used by get_history */
21 #define NEWER	0
22 #define OLDER	1
23 
24 #endif /* _HISTORY_H_ */
25