blob: f6b7f54961d4824f0652f1d7ca560ae02e79a12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#include <stdbool.h>
#include "path-lookup.h"
int verify_units(
char **filenames,
UnitFileScope scope,
bool check_man,
bool run_generators);
|