1 /**
2  * \file ui-knowledge.h
3  * \brief Player knowledge functions
4  *
5  * Copyright (c) 2000-2007 Eytan Zweig, Andrew Doull, Pete Mack.
6  * Copyright (c) 2010 Peter Denison, Chris Carr.
7  *
8  * This work is free software; you can redistribute it and/or modify it
9  * under the terms of either:
10  *
11  * a) the GNU General Public License as published by the Free Software
12  *    Foundation, version 2, or
13  *
14  * b) the "Angband licence":
15  *    This software may be copied and distributed for educational, research,
16  *    and not for profit purposes provided that this copyright and statement
17  *    are included in all such copies.  Other copyrights may also apply.
18  */
19 #ifndef UI_KNOWLEDGE_H
20 #define UI_KNOWLEDGE_H
21 
22 void textui_browse_object_knowledge(const char *name, int row);
23 void textui_knowledge_init(void);
24 void textui_browse_knowledge(void);
25 void do_cmd_message_one(void);
26 void do_cmd_messages(void);
27 void do_cmd_inven(void);
28 void do_cmd_equip(void);
29 void do_cmd_quiver(void);
30 void do_cmd_look(void);
31 void do_cmd_locate(void);
32 int cmp_monsters(const void *a, const void *b);
33 void do_cmd_query_symbol(void);
34 void do_cmd_center_map(void);
35 void do_cmd_monlist(void);
36 void do_cmd_itemlist(void);
37 
38 #endif /* UI_KNOWLEDGE_H */
39