1 /*
2  * tabkey.h: header for tabkey.c
3  *
4  * written by Joshua J. Drake and Kraig Amador
5  *
6  */
7 
8 #ifndef __tabkey_h
9 #define __tabkey_h
10 
11 #include "irc.h"
12 
13 typedef struct	nicktab_stru
14 {
15 	struct	nicktab_stru	*next;
16 	u_char	*nick;
17 	int	times;
18 	time_t	last_used;
19 }	Reply;
20 
21 	void	tab_reply _((u_int, u_char *));
22 	u_char	*get_tab_key _((int));
23 	void	nchk_tabkeys _((time_t));
24 	void	add_tab_key _((int, u_char *, u_char *));
25 
26 #endif /* __keys_h */
27