Citadel API clean up.
[citadel.git] / citadel / room_ops.h
1 /* $Id$ */
2 int is_known (struct ctdlroom *roombuf, int roomnum,
3               struct ctdluser *userbuf);
4 int has_newmsgs (struct ctdlroom *roombuf, int roomnum,
5                  struct ctdluser *userbuf);
6 int is_zapped (struct ctdlroom *roombuf, int roomnum,
7                struct ctdluser *userbuf);
8 void b_putroom(struct ctdlroom *qrbuf, char *room_name);
9 void b_deleteroom(char *);
10 void lgetfloor (struct floor *flbuf, int floor_num);
11 void lputfloor (struct floor *flbuf, int floor_num);
12 int sort_msglist (long int *listptrs, int oldcount);
13 void list_roomname(struct ctdlroom *qrbuf, int ra, int current_view, int default_view);
14
15 void convert_room_name_macros(char *towhere, size_t maxlen);
16
17