diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-01-02 22:34:44 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-01-02 22:36:39 -0500 |
commit | 5fa75d0823b66a49456790a19e203fec0bc67220 (patch) | |
tree | 0291b18aacda7cd371702e280dda1b1f3b6bd558 /posix1e.h | |
parent | 28c787b0dcbae9e6c7dfc0013bdaff25d0a2f009 (diff) | |
download | bfs-5fa75d0823b66a49456790a19e203fec0bc67220.tar.xz |
posix1e: Split out ACL and capability handling from util
Diffstat (limited to 'posix1e.h')
-rw-r--r-- | posix1e.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/posix1e.h b/posix1e.h new file mode 100644 index 0000000..da7c2b4 --- /dev/null +++ b/posix1e.h @@ -0,0 +1,33 @@ +/**************************************************************************** + * bfs * + * Copyright (C) 2019 Tavian Barnes <tavianator@tavianator.com> * + * * + * Permission to use, copy, modify, and/or distribute this software for any * + * purpose with or without fee is hereby granted. * + * * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * + ****************************************************************************/ + +#ifndef BFS_POSIX1E_H +#define BFS_POSIX1E_H + +#include "bftw.h" +#include "util.h" + +/** + * Check if a file has a non-trvial Access Control List. + */ +bool bfs_check_acl(const struct BFTW *ftwbuf); + +/** + * Check if a file has a non-trvial capability set. + */ +bool bfs_check_capabilities(const struct BFTW *ftwbuf); + +#endif // BFS_POSIX1E_H |