WIP: Fix the Proxy-State issue.
[libradsec.git] / list.h
diff --git a/list.h b/list.h
index cf63dce..38169c7 100644 (file)
--- a/list.h
+++ b/list.h
@@ -1,5 +1,4 @@
-/* Copyright (c) 2006-2010, UNINETT AS
- * Copyright (c) 2010-2012, NORDUnet A/S */
+/* Copyright (c) 2007,2009, UNINETT AS */
 /* See LICENSE for licensing information. */
 
 #ifdef SYS_SOLARIS9
@@ -24,6 +23,9 @@ struct list *list_create();
 /* frees all memory associated with the list */
 void list_destroy(struct list *list);
 
+/* frees memory allocated for the list itself */
+void list_free(struct list *list);
+
 /* appends entry to list; returns 1 if ok, 0 if malloc fails */
 int list_push(struct list *list, void *data);