Added contact module

This commit is contained in:
James Booth
2012-05-04 01:00:01 +01:00
parent 30dbbad544
commit 6e46e8fec0
7 changed files with 189 additions and 147 deletions

View File

@@ -23,6 +23,8 @@
#ifndef CONTACT_LIST_H
#define CONTACT_LIST_H
#include "contact.h"
struct contact_t {
char *name;
char *show;
@@ -30,7 +32,7 @@ struct contact_t {
};
struct contact_node_t {
struct contact_t *contact;
PContact contact;
struct contact_node_t *next;
};