1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
6 This file is part of systemd.
8 Copyright 2012 Kay Sievers <kay@vrfy.org>
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
31 struct strbuf_node *root;
44 struct strbuf_child_entry *children;
45 uint8_t children_count;
48 struct strbuf_child_entry {
50 struct strbuf_node *child;
53 struct strbuf *strbuf_new(void);
54 ssize_t strbuf_add_string(struct strbuf *str, const char *s, size_t len);
55 void strbuf_complete(struct strbuf *str);
56 void strbuf_cleanup(struct strbuf *str);