Removed destroy_list, get_size from contact_list

This commit is contained in:
James Booth
2012-05-10 00:40:41 +01:00
parent a336148cd2
commit 1266c87a12
3 changed files with 17 additions and 61 deletions

View File

@@ -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