1 /**
2  * \file ui-history.h
3  * \brief Character auto-history display
4  *
5  * Copyright (c) 2007 J.D. White
6  *
7  * This work is free software; you can redistribute it and/or modify it
8  * under the terms of either:
9  *
10  * a) the GNU General Public License as published by the Free Software
11  *    Foundation, version 2, or
12  *
13  * b) the "Angband licence":
14  *    This software may be copied and distributed for educational, research,
15  *    and not for profit purposes provided that this copyright and statement
16  *    are included in all such copies.  Other copyrights may also apply.
17  */
18 
19 #ifndef UI_HISTORY_H
20 #define UI_HISTORY_H
21 
22 void history_display(void);
23 void dump_history(ang_file *file);
24 
25 #endif /* !UI_HISTORY_H */
26