1 #ifndef _SEPOL_ROLES_H_ 2 #define _SEPOL_ROLES_H_ 3 4 #include <sys/cdefs.h> 5 6 __BEGIN_DECLS 7 8 extern int sepol_role_exists(const sepol_policydb_t * policydb, 9 const char *role, int *response); 10 11 extern int sepol_role_list(const sepol_policydb_t * policydb, 12 char ***roles, unsigned int *nroles); 13 14 __END_DECLS 15 #endif 16