Skip to content
Snippets Groups Projects
Select Git revision
  • 341d34b5822dbd839d00e3da38f949fc36b1c717
  • test default
2 results

utils.h

Blame
  • utils.h 361 B
    #ifndef UTILS_H
    #define UTILS_H
    
    #include <stdbool.h>
    #include <stdint.h>
    #include <sepol/policydb/avtab.h>
    #include <sepol/policydb/policydb.h>
    
    
    extern bool USAGE_ERROR;
    
    void display_allow(policydb_t *policydb, avtab_key_t *key, int idx, uint32_t perms);
    
    int load_policy(char *filename, policydb_t * policydb, struct policy_file *pf);
    
    #endif /* UTILS_H */