about summary refs log tree commit diff stats
path: root/contact_list.h
blob: 753b7e44d685102c0c0e86641a2f2a17e653ee16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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