blob: e90aa2cc0d5eee8e7db92ba4ad1d0020b3afa428 [file] [log] [blame]
Jeongik Cha1199caa2021-07-20 12:32:58 +09001/* ----------------------------------------------------------------------------
2 libconfig - A library for processing structured configuration files
3 Copyright (C) 2005-2020 Mark A Lindner
4
5 This file is part of libconfig.
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 License
9 as published by the Free Software Foundation; either version 2.1 of
10 the License, or (at your option) any later version.
11
12 This library is distributed in the hope that it will be useful, but
13 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 Library General Public
18 License along with this library; if not, see
19 <http://www.gnu.org/licenses/>.
20 ----------------------------------------------------------------------------
21*/
22
23#ifndef __libconfig_strvec_h
24#define __libconfig_strvec_h
25
26#include <string.h>
27#include <sys/types.h>
28
29typedef struct
30{
31 const char **strings;
32 const char **end;
33 size_t length;
34 size_t capacity;
35} strvec_t;
36
37extern void libconfig_strvec_append(strvec_t *vec, const char *s);
38
39extern const char **libconfig_strvec_release(strvec_t *vec);
40
41extern void libconfig_strvec_delete(const char * const *vec);
42
43#endif /* __libconfig_strvec_h */