blob: 7b22d0f58b39a108acbeffb6119d29717d54268c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
This file is part of systemd.
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);
|