]> code.citadel.org Git - citadel.git/blobdiff - citadel/vcard.h
* Replaced all "Citadel/UX" references with "Citadel"
[citadel.git] / citadel / vcard.h
index b034d7d0e31d146527c0315882ce709a2fd4ba55..e62e7aeae697029cacfb1504c0ff2406093f41df 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * vCard implementation for Citadel/UX
+ * vCard implementation for Citadel
  *
  * Copyright (C) 1999 by Art Cancro
  * This code is freely redistributable under the terms of the GNU General
@@ -25,8 +25,10 @@ struct vCard {
 
 
 struct vCard *vcard_new(void);
+void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
 struct vCard *vcard_load(char *);
 void vcard_free(struct vCard *);
-void vcard_set_prop(struct vCard *v, char *name, char *value);
-char *vcard_get_prop(struct vCard *v, char *propname, int is_partial);
+void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
+char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
+                       int instance, int return_propname);
 char *vcard_serialize(struct vCard *);