14#ifndef VCARDSTRARRAY_H
15#define VCARDSTRARRAY_H
17#include "libical_vcard_export.h"
22#define vcardstrarray_new(increment_size) \
23 icalstrarray_new(increment_size)
25#define vcardstrarray_element_at(array, position) \
26 icalstrarray_element_at(array, position)
28#define vcardstrarray_size(array) \
29 icalstrarray_size(array)
31#define vcardstrarray_find(array, needle) \
32 icalstrarray_find(array, needle)
34#define vcardstrarray_append(array, elem) \
35 icalstrarray_append(array, elem)
37#define vcardstrarray_add(array, add) \
38 icalstrarray_add(array, add)
40#define vcardstrarray_remove_element_at(array, position) \
41 icalstrarray_remove_element_at(array, position)
43#define vcardstrarray_remove(array, del) \
44 icalstrarray_remove(array, del)
46#define vcardstrarray_free(array) \
47 icalstrarray_free(array)
49#define vcardstrarray_sort(array) \
50 icalstrarray_sort(array)
52#define vcardstrarray_clone(array) \
53 icalstrarray_clone(array)
Defines the data structure for handling string arrays.
icalstrarray vcardstrarray