Skip to content
Snippets Groups Projects
Commit 2279e852 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

(copy_conference): The argument is const.

(copy_aux_item_list): Likewise.
(init_text_list): Removed.
parent f99ffd11
Branches
Tags
No related merge requests found
/* /*
* $Id: kom-memory.h,v 1.7 1997/10/23 12:37:23 byers Exp $ * $Id: kom-memory.h,v 1.8 1998/07/26 16:40:26 ceder Exp $
* Copyright (C) 1991, 1993, 1994, 1996 Lysator Academic Computer Association. * Copyright (C) 1991, 1993, 1994, 1996 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
* Please mail bug reports to bug-lyskom@lysator.liu.se. * Please mail bug reports to bug-lyskom@lysator.liu.se.
*/ */
/* /*
* $Id: kom-memory.h,v 1.7 1997/10/23 12:37:23 byers Exp $ * $Id: kom-memory.h,v 1.8 1998/07/26 16:40:26 ceder Exp $
* *
* The time has come to get some order into this mess. * The time has come to get some order into this mess.
* *
...@@ -50,7 +50,7 @@ extern void init_conf_type(Conf_type *ct); ...@@ -50,7 +50,7 @@ extern void init_conf_type(Conf_type *ct);
extern Conference *alloc_conference (void); extern Conference *alloc_conference (void);
extern void free_conference (Conference *c); extern void free_conference (Conference *c);
extern void clear_conference (Conference *c); extern void clear_conference (Conference *c);
extern Conference *copy_conference (Conference *c); extern Conference *copy_conference (const Conference *c);
extern void init_conference (Conference *c); extern void init_conference (Conference *c);
/* Dynamic_session_info */ /* Dynamic_session_info */
...@@ -91,9 +91,6 @@ extern void init_session_info_ident (Session_info_ident *s); ...@@ -91,9 +91,6 @@ extern void init_session_info_ident (Session_info_ident *s);
/* Static_session_info */ /* Static_session_info */
extern void init_static_session_info (Static_session_info *d); extern void init_static_session_info (Static_session_info *d);
/* Text_list */
extern void init_text_list (Text_list *tl);
/* Text_stat */ /* Text_stat */
extern Text_stat *alloc_text_stat (void); extern Text_stat *alloc_text_stat (void);
extern void free_text_stat (Text_stat *t); extern void free_text_stat (Text_stat *t);
...@@ -116,7 +113,7 @@ extern void init_who_info_old (Who_info_old *w); ...@@ -116,7 +113,7 @@ extern void init_who_info_old (Who_info_old *w);
/* Aux_item_list */ /* Aux_item_list */
extern void free_aux_item_list (Aux_item_list *list); extern void free_aux_item_list (Aux_item_list *list);
extern void copy_aux_item_list (Aux_item_list *dest, Aux_item_list *src); extern void copy_aux_item_list (Aux_item_list *dest, const Aux_item_list *src);
extern void init_aux_item_list (Aux_item_list *list); extern void init_aux_item_list (Aux_item_list *list);
extern void copy_aux_item (Aux_item *dest, Aux_item *src); extern void copy_aux_item (Aux_item *dest, Aux_item *src);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment