• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _SEPOL_ROLES_H_
2 #define _SEPOL_ROLES_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
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 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19