1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-10-06 20:03:46 -04:00
profanity/contact_list.h
2012-03-08 22:43:28 +00:00

15 lines
269 B
C

#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);
int contact_list_remove(char *contact);
struct contact_list *get_contact_list(void);
#endif