about summary refs log tree commit diff stats
path: root/contact_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'contact_list.h')
-rw-r--r--contact_list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contact_list.h b/contact_list.h
index f751f2ab..01fbd46f 100644
--- a/contact_list.h
+++ b/contact_list.h
@@ -23,14 +23,14 @@
 #ifndef CONTACT_LIST_H
 #define CONTACT_LIST_H
 
-struct contact_list {
+typedef struct _contact_list_t {
     char **contacts;
     int size;
-};
+} contact_list_t;
 
 void contact_list_clear(void);
 int contact_list_add(const char * const contact);
 int contact_list_remove(const char * const contact);
-struct contact_list *get_contact_list(void);
+contact_list_t *get_contact_list(void);
 
 #endif