Added basic online list

This commit is contained in:
James Booth
2012-03-08 00:46:24 +00:00
parent 03b0c01849
commit 78bd151c48
9 changed files with 213 additions and 15 deletions

13
contact_list.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef CONTACT_LIST_H
#define CONTACT_LIST_H
struct contact_list {
char **contacts;
int size;
};
void contact_list_clear(void);
int contact_list_add(char *contact);
struct contact_list *get_contact_list(void);
#endif