blob: c7238cd0e4cebaa43761411c0a4dab7283a7fe75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
Copyright 2014 Zbigniew Jędrzejewski-Szmek
***/
#include <stdbool.h>
#include "path-lookup.h"
int verify_units(
char **filenames,
UnitFileScope scope,
bool check_man,
bool run_generators);
|