6 lines
197 B
C
6 lines
197 B
C
#include <sys/acl.h>
|
|
|
|
acl_t f_acl_get_file(const char *path_p, acl_type_t type);
|
|
int f_acl_set_file(const char *path_p, acl_type_t type, acl_t acl);
|
|
void f_acl_delete_by_uid(acl_t acl, uid_t uid);
|