fortify/acl/acl-update.h
Ophestra 4900cd6d41
All checks were successful
Test / Create distribution (push) Successful in 24s
Test / Run NixOS test (push) Successful in 3m17s
acl: implement removeEntry in C
Signed-off-by: Ophestra <cat@gensokyo.uk>
2025-02-17 20:37:10 +09:00

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);