mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
f4d74c6105
Documentation is licensed under LGPL-2.1-or-later. Scripts are MIT to facilitate reuse. Examples are relicensed to CC0-1.0 to maximise copy-and-paste for users, with permission from authors.
20 lines
396 B
C
20 lines
396 B
C
/* SPDX-License-Identifier: CC0-1.0 */
|
|
|
|
#include <systemd/sd-bus.h>
|
|
|
|
int append_strings_to_message(sd_bus_message *m, const char *const *arr) {
|
|
int r;
|
|
|
|
r = sd_bus_message_open_container(m, 'a', "s");
|
|
if (r < 0)
|
|
return r;
|
|
|
|
for (const char *s = *arr; *s; s++) {
|
|
r = sd_bus_message_append(m, "s", s);
|
|
if (r < 0)
|
|
return r;
|
|
}
|
|
|
|
return sd_bus_message_close_container(m);
|
|
}
|