chiark / gitweb /
73c2e1ea23b33c13b9be1eda4471c403f7fbad83
[elogind.git] / src / libelogind / sd-bus / bus-signature.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   This file is part of systemd.
6
7   Copyright 2013 Lennart Poettering
8 ***/
9
10 #include <stdbool.h>
11
12 bool signature_is_single(const char *s, bool allow_dict_entry);
13 bool signature_is_pair(const char *s);
14 bool signature_is_valid(const char *s, bool allow_dict_entry);
15
16 int signature_element_length(const char *s, size_t *l);