chiark / gitweb /
tree-wide: drop 'This file is part of systemd' blurb
[elogind.git] / src / libelogind / sd-bus / bus-signature.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 bool signature_is_single(const char *s, bool allow_dict_entry);
11 bool signature_is_pair(const char *s);
12 bool signature_is_valid(const char *s, bool allow_dict_entry);
13
14 int signature_element_length(const char *s, size_t *l);