1 #ifndef _BURP_ACL_H
2 #define _BURP_ACL_H
3 
4 #ifdef HAVE_ACL
5 #if defined(HAVE_LINUX_OS) || \
6     defined(HAVE_FREEBSD_OS) || \
7     defined(HAVE_NETBSD_OS)
8 extern int has_acl(const char *path, enum cmd cmd);
9 extern int get_acl(struct asfd *asfd, const char *path, int isdir,
10 	char **acltext, size_t *alen, struct cntr *cntr);
11 extern int set_acl(struct asfd *asfd, const char *path,
12 	const char *acltext, char metacmd, struct cntr *cntr);
13 #endif
14 #endif
15 
16 #endif
17