1/*
2 * Copyright © 2020 Canonical Ltd.
3 * Copyright © 2021 Alexandros Theodotou
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef __G_STRVBUILDER_H__
22#define __G_STRVBUILDER_H__
23
24#if !defined(__GLIB_H_INSIDE__) && !defined(GLIB_COMPILATION)
25#error "Only <glib.h> can be included directly."
26#endif
27
28#include <glib/gstrfuncs.h>
29#include <glib/gtypes.h>
30
31G_BEGIN_DECLS
32
33typedef struct _GStrvBuilder GStrvBuilder;
34
35GLIB_AVAILABLE_IN_2_68
36GStrvBuilder *g_strv_builder_new (void);
37
38GLIB_AVAILABLE_IN_2_68
39void g_strv_builder_unref (GStrvBuilder *builder);
40
41GLIB_AVAILABLE_IN_2_82
42GStrv g_strv_builder_unref_to_strv (GStrvBuilder *builder);
43
44GLIB_AVAILABLE_IN_2_68
45GStrvBuilder *g_strv_builder_ref (GStrvBuilder *builder);
46
47GLIB_AVAILABLE_IN_2_68
48void g_strv_builder_add (GStrvBuilder *builder,
49 const char *value);
50
51GLIB_AVAILABLE_IN_2_70
52void g_strv_builder_addv (GStrvBuilder *builder,
53 const char **value);
54
55GLIB_AVAILABLE_IN_2_70
56void g_strv_builder_add_many (GStrvBuilder *builder,
57 ...) G_GNUC_NULL_TERMINATED;
58
59GLIB_AVAILABLE_IN_2_80
60void g_strv_builder_take (GStrvBuilder *builder,
61 char *value);
62
63GLIB_AVAILABLE_IN_2_68
64GStrv g_strv_builder_end (GStrvBuilder *builder);
65
66G_END_DECLS
67
68#endif /* __G_STRVBUILDER_H__ */
69