Systemd/src/shared/install-printf.h
Zbigniew Jędrzejewski-Szmek 303ee60151 Mark *data and *userdata params to specifier_printf() as const
It would be very wrong if any of the specfier printf calls modified
any of the objects or data being printed. Let's mark all arguments as const
(primarily to make it easier for the reader to see where modifications cannot
occur).
2018-12-12 16:45:33 +01:00

7 lines
164 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#include "install.h"
int install_full_printf(const UnitFileInstallInfo *i, const char *format, char **ret);