a7b2c5f4ab
Implement the booleans test in sepolicy-analyze so that we can move the no-booleans check from the SELinuxTest to the SELinuxHostTest along with the other policy checks. Change-Id: I95d7ad34da10c354470f43734d34a6ec631a7b4e Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
11 lines
213 B
C
11 lines
213 B
C
#ifndef BOOLEANS_H
|
|
#define BOOLEANS_H
|
|
|
|
#include <sepol/policydb/policydb.h>
|
|
|
|
#include "utils.h"
|
|
|
|
void booleans_usage(void);
|
|
int booleans_func(int argc, char **argv, policydb_t *policydb);
|
|
|
|
#endif /* BOOLEANS_H */
|