/*
 * history.h: header for history.c 
 *
 * Written By Michael Sandrof
 *
 * Copyright(c) 1990 
 *
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
 *
 * @(#)$Id: history.h 72 2005-11-15 19:04:17Z rfeany $
 */

#ifndef __history_h_
#define __history_h_

void set_history_size(Window *, char *, int);
void add_to_history(char *);
char *get_from_history(int);
char *do_history(char *, char *);
void history(char *, char *, char *, char *);
void shove_to_history(char, char *);
void get_history(int);

/* used by get_from_history */
#define NEXT 0
#define PREV 1

#endif				/* __history_h_ */


syntax highlighted by Code2HTML, v. 0.9.1