about summary refs log tree commit diff stats
path: root/contact_list.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-05-10 00:40:41 +0100
committerJames Booth <boothj5@gmail.com>2012-05-10 00:40:41 +0100
commit1266c87a12f56042b7de00749050ca2468f541d2 (patch)
tree8d1b2402e72f0450d7e9ea29d28cc4fb83fc6f2e /contact_list.h
parenta336148cd2b0c529515e7b0d74afae9e0660cf6c (diff)
downloadprofani-tty-1266c87a12f56042b7de00749050ca2468f541d2.tar.gz
Removed destroy_list, get_size from contact_list
Diffstat (limited to 'contact_list.h')
-rw-r--r--contact_list.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/contact_list.h b/contact_list.h
index 12c827de..0f72bd08 100644
--- a/contact_list.h
+++ b/contact_list.h
@@ -27,11 +27,6 @@
 
 #include "contact.h"
 
-struct contact_node_t {
-    PContact contact;    
-    struct contact_node_t *next;
-};
-
 void contact_list_clear(void);
 void reset_search_attempts(void);
 int contact_list_add(const char * const name, const char * const show,
@@ -39,7 +34,5 @@ int contact_list_add(const char * const name, const char * const show,
 int contact_list_remove(const char * const name);
 GSList * get_contact_list(void);
 char * find_contact(char *search_str);
-int get_size(GSList *list);
-void destroy_list(GSList *list);
 
 #endif