mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-27 18:36:22 +00:00
Added contact module
This commit is contained in:
13
contact.h
Normal file
13
contact.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user