blob: c2b1f5a6c33993986009a9ff8d3f5938ac8dcd8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
Copyright 2013 Lennart Poettering
***/
#include <stdbool.h>
bool signature_is_single(const char *s, bool allow_dict_entry);
bool signature_is_pair(const char *s);
bool signature_is_valid(const char *s, bool allow_dict_entry);
int signature_element_length(const char *s, size_t *l);
|