summaryrefslogtreecommitdiff
path: root/netfs/daemon/ioHelpers.h
blob: ed2d60bfaab3b3a8316e9e06f421f200f7f7bcc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef NETFS_DAEMON_IOHELPERS
#define NETFS_DAEMON_IOHELPERS

#include <sys/stat.h>

bool ReadableBy(const struct stat &, uid_t u, gid_t g);
bool WritableBy(const struct stat &, uid_t u, gid_t g);
bool ExecutableBy(const struct stat &, uid_t u, gid_t g);

#endif