summaryrefslogtreecommitdiff
path: root/lib/rdep.h
blob: a1d84668b3ab16c8ea11fe020d5ef0088d64a5ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _dep_h_
#define _dep_h_

#include <stdbool.h>
#include "initd.h"
#include "types.h"

extern initd_list_t *initd_add_recurse_deps(initd_list_t *pool,
				initd_sk_t sk, const dep_t *add);
extern initd_list_t *initd_remove_recurse_deps(initd_list_t *pool,
				initd_sk_t sk, const dep_t *remove);
extern void initd_recurse_set_verbose(bool verbose);
extern bool initd_list_verify_deps(const initd_list_t *ord, initd_sk_t sk);

#endif /* _dep_h_ */