mirror of
https://github.com/systemd/systemd.git
synced 2026-07-13 02:51:14 +00:00
12 lines
286 B
C
12 lines
286 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "forward.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, SIZE_MAX);
|
|
}
|