/src/systemd/src/basic/bus-label.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
2 | | #pragma once |
3 | | |
4 | | #include "forward.h" |
5 | | |
6 | | char* bus_label_escape(const char *s); |
7 | | char* bus_label_unescape_n(const char *f, size_t l); |
8 | | |
9 | 0 | static inline char* bus_label_unescape(const char *f) { |
10 | 0 | return bus_label_unescape_n(f, SIZE_MAX); |
11 | 0 | } Unexecuted instantiation: fuzz-bus-label.c:bus_label_unescape Unexecuted instantiation: bus-util.c:bus_label_unescape Unexecuted instantiation: bus-label.c:bus_label_unescape Unexecuted instantiation: unit-def.c:bus_label_unescape Unexecuted instantiation: bus-creds.c:bus_label_unescape Unexecuted instantiation: sd-bus.c:bus_label_unescape |