1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* SPDX-License-Identifier: LGPL-2.1+ */ #pragma once #include <stddef.h> #include <stdlib.h> #include <string.h> #include "string-util.h" char *bus_label_escape(const char *s); char *bus_label_unescape_n(const char *f, size_t l); static inline char *bus_label_unescape(const char *f) { return bus_label_unescape_n(f, strlen_ptr(f)); }