/*1* history.h: header for history.c2*3* Copyright 1990 Michael Sandrof4* Copyright 1997 EPIC Software Labs5* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT6*7* @(#)$Id: history.h 3 2008-02-25 09:49:14Z keaston $8*/910#ifndef __history_h__11#define __history_h__1213BUILT_IN_COMMAND(history);14void set_history_size (Window *, char *, int);15void add_to_history (char *);16char *get_from_history (int);17void get_history (int);18char *do_history (char *, char *);19void shove_to_history (char, char *);2021/* used by get_history */22#define NEXT 023#define PREV 12425#endif /* _HISTORY_H_ */262728