1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-04 18:44:14 -04:00
profanity/contact.h
2012-05-04 01:00:01 +01:00

14 lines
354 B
C

#ifndef CONTACT_H
#define CONTACT_H
typedef struct p_contact_t *PContact;
PContact p_contact_new(const char * const name, const char * const show,
const char * const status);
void p_contact_free(PContact contact);
char * p_contact_name(PContact contact);
char * p_contact_show(PContact contact);
char * p_contact_status(PContact contact);
#endif