]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-bus/bus-type.h
Merge pull request #32609 from systemd/dependabot/github_actions/github/super-linter-6
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-type.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 #include <stdbool.h>
5
6 #include "macro.h"
7
8 bool bus_type_is_valid(char c) _const_;
9 bool bus_type_is_basic(char c) _const_;
10 /* "trivial" is systemd's term for what the D-Bus Specification calls
11 * a "fixed type": that is, a basic type of fixed length */
12 bool bus_type_is_trivial(char c) _const_;
13 bool bus_type_is_container(char c) _const_;
14
15 int bus_type_get_alignment(char c) _const_;
16 int bus_type_get_size(char c) _const_;