Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
vcardstrarray.h
1/*======================================================================
2 FILE: vcardstrarray.h
3 CREATOR: Ken Murchison 24 Aug 2022
4
5 SPDX-FileCopyrightText: 2022, Fastmail Pty. Ltd. (https://fastmail.com)
6 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7 ======================================================================*/
8
9#ifndef VCARDSTRARRAY_H
10#define VCARDSTRARRAY_H
11
12#include "libical_vcard_export.h"
13#include "icalstrarray.h"
14
15typedef icalstrarray vcardstrarray;
16
17#define vcardstrarray_new(increment_size) \
18 icalstrarray_new(increment_size)
19
20#define vcardstrarray_element_at(array, position) \
21 icalstrarray_element_at(array, position)
22
23#define vcardstrarray_size(array) \
24 icalstrarray_size(array)
25
26#define vcardstrarray_find(array, needle) \
27 icalstrarray_find(array, needle)
28
29#define vcardstrarray_append(array, elem) \
30 icalstrarray_append(array, elem)
31
32#define vcardstrarray_add(array, add) \
33 icalstrarray_add(array, add)
34
35#define vcardstrarray_remove_element_at(array, position) \
36 icalstrarray_remove_element_at(array, position)
37
38#define vcardstrarray_remove(array, del) \
39 icalstrarray_remove(array, del)
40
41#define vcardstrarray_free(array) \
42 icalstrarray_free(array)
43
44#define vcardstrarray_sort(array) \
45 icalstrarray_sort(array)
46
47#define vcardstrarray_clone(array) \
48 icalstrarray_clone(array)
49
50#endif /* VCARDSTRARRAY_H */