Use proper prototypes.
authorIvo Timmermans <ivo@lychnis.net>
Thu, 16 Nov 2000 22:13:09 +0000 (22:13 +0000)
committerIvo Timmermans <ivo@lychnis.net>
Thu, 16 Nov 2000 22:13:09 +0000 (22:13 +0000)
lib/list.c
lib/list.h
lib/xalloc.h

index 4c90b580e7117b8da3ef4dccc024f00da453a7a8..a09cbeadbe5b63b06eff5e6f4c79afff1aa8c830 100644 (file)
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: list.c,v 1.1.2.1 2000/11/15 22:04:48 zarq Exp $
+    $Id: list.c,v 1.1.2.2 2000/11/16 22:13:08 zarq Exp $
 */
 
 #include "config.h"
 
+#include <malloc.h>
 #include <string.h>
+#include <syslog.h>
 
 #include <error.h>
 #include <list.h>
@@ -59,7 +61,7 @@ list_node_t *list_delete(list_t *list, list_node_t *idx)
 
   if(list->callbacks->delete != NULL)
     if(list->callbacks->delete(idx->data))
-      error(ERR_WARNING, N_("List callback[delete] failed for %08lx - freeing anyway"), idx->data);
+      syslog(LOG_WARNING, _("List callback[delete] failed for %08lx - freeing anyway"), idx->data);
   
   free(idx->data);
   
@@ -125,7 +127,7 @@ void list_destroy(list_t *list)
 {
   if(!list)
     return;
-  list_destroy_nodes(list);
+/*  list_destroy_nodes(list); */
   free(list);
 }
 
@@ -134,7 +136,7 @@ void list_destroy(list_t *list)
 
   Append a new node to the list that points to data.
 */
-list_append(list_t *list, void *data)
+void list_append(list_t *list, void *data)
 {
   list_node_t *n;
 
index 33035734cc10d595f517eed39c5192bd00649ed5..86e17e62d15ddc8fc7f99727304f3f0db6f7094d 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: list.h,v 1.1.2.1 2000/11/15 22:04:48 zarq Exp $
+    $Id: list.h,v 1.1.2.2 2000/11/16 22:13:09 zarq Exp $
 */
 
 #ifndef __TINC_LIST_H__
@@ -39,6 +39,9 @@ typedef struct list_t {
   list_callbacks_t *callbacks;
 } list_t;
 
+extern list_t *list_new(void);
+extern void list_append(list_t *, void *);
+extern void list_forall_nodes(list_t *, int (*)(void *));
 
 
 #endif /* __TINC_LIST_H__ */
index e77e6a57cc2eda8b8eb871ac0d1e62b65484a921..84b6cacf617f19bd868a22de3a9c9247d2b1cce0 100644 (file)
@@ -19,5 +19,6 @@ extern char *const xalloc_msg_memory_exhausted;
 extern void (*xalloc_fail_func) ();
 
 void *xmalloc PARAMS ((size_t n));
+void *xmalloc_and_zero PARAMS ((size_t n));
 void *xcalloc PARAMS ((size_t n, size_t s));
 void *xrealloc PARAMS ((void *p, size_t n));