mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
39 lines
952 B
C
39 lines
952 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
struct strbuf {
|
|
char *buf;
|
|
size_t len;
|
|
struct strbuf_node *root;
|
|
|
|
size_t nodes_count;
|
|
size_t in_count;
|
|
size_t in_len;
|
|
size_t dedup_len;
|
|
size_t dedup_count;
|
|
};
|
|
|
|
struct strbuf_node {
|
|
size_t value_off;
|
|
size_t value_len;
|
|
|
|
struct strbuf_child_entry *children;
|
|
uint8_t children_count;
|
|
};
|
|
|
|
struct strbuf_child_entry {
|
|
uint8_t c;
|
|
struct strbuf_node *child;
|
|
};
|
|
|
|
struct strbuf* strbuf_new(void);
|
|
ssize_t strbuf_add_string_full(struct strbuf *str, const char *s, size_t len);
|
|
static inline ssize_t strbuf_add_string(struct strbuf *str, const char *s) {
|
|
return strbuf_add_string_full(str, s, SIZE_MAX);
|
|
}
|
|
void strbuf_complete(struct strbuf *str);
|
|
struct strbuf* strbuf_free(struct strbuf *str);
|
|
DEFINE_TRIVIAL_CLEANUP_FUNC(struct strbuf*, strbuf_free);
|