chiark / gitweb /
tree-wide: drop 'This file is part of systemd' blurb
[elogind.git] / src / libelogind / sd-bus / bus-type.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   Copyright 2013 Lennart Poettering
6 ***/
7
8 #include <stdbool.h>
9
10 #include "macro.h"
11
12 bool bus_type_is_valid(char c) _const_;
13 bool bus_type_is_valid_in_signature(char c) _const_;
14 bool bus_type_is_basic(char c) _const_;
15 /* "trivial" is systemd's term for what the D-Bus Specification calls
16  * a "fixed type": that is, a basic type of fixed length */
17 bool bus_type_is_trivial(char c) _const_;
18 bool bus_type_is_container(char c) _const_;
19
20 int bus_type_get_alignment(char c) _const_;
21 int bus_type_get_size(char c) _const_;