version 1.27 | | version 1.28 |
---|
| | |
/* | | /* |
* static char *rcsid_readable_c = | | * static char *rcsid_readable_c = |
* "$Id: readable.c,v 1.27 2005/12/05 23:34:03 akirschbaum Exp $"; | | * "$Id: readable.c,v 1.28 2006/02/09 00:48:36 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
*/ | | */ |
| | |
static title * | | static title * |
find_title (object *book, int msgtype) | | find_title (const object *book, int msgtype) |
{ | | { |
title *t = NULL; | | title *t = NULL; |
titlelist *tl = get_titlelist (msgtype); | | titlelist *tl = get_titlelist (msgtype); |
| | |
*/ | | */ |
| | |
static int | | static int |
unique_book (object *book, int msgtype) | | unique_book (const object *book, int msgtype) |
{ | | { |
title *test; | | title *test; |
| | |
| | |
/* add_book_to_list() */ | | /* add_book_to_list() */ |
| | |
static void | | static void |
add_book_to_list (object *book, int msgtype) | | add_book_to_list (const object *book, int msgtype) |
{ | | { |
titlelist *tl = get_titlelist (msgtype); | | titlelist *tl = get_titlelist (msgtype); |
title *t; | | title *t; |
| | |
*/ | | */ |
| | |
char * | | char * |
mon_desc (object *mon) | | mon_desc (const object *mon) |
{ | | { |
static char retbuf[HUGE_BUF]; | | static char retbuf[HUGE_BUF]; |
| | |