Loading...
Searching...
No Matches
Go to the documentation of this file.
46#define S_IFSOCK 0140000
47#define S_IFLNK 0120000
48#define S_IFREG 0100000
49#define S_IFBLK 0060000
50#define S_IFDIR 0040000
51#define S_IFCHR 0020000
52#define S_IFIFO 0010000
53#define S_ISUID 0004000
54#define S_ISGID 0002000
55#define S_ISVTX 0001000
58#define S_ISREG(m) (((m) & S_IFREG) == S_IFREG)
59#define S_ISDIR(m) (((m) & S_IFDIR) == S_IFDIR)
60#define S_ISCHR(m) (((m) & S_IFCHR) == S_IFCHR)
61#define S_ISBLK(m) (((m) & S_IFBLK) == S_IFBLK)
62#define S_ISFIFO(m) (((m) & S_IFIFO) == S_IFIFO)
63#define S_ISLNK(m) (((m) & S_IFLNK) == S_IFLNK)
64#define S_ISSOCK(m) (((m) & S_IFSOCK) == S_IFSOCK)
#define XE_LIB
Definition _xeneva.h:55
#define XE_EXTERN
Definition _xeneva.h:50
#define mkdir
Definition acwin.h:185
off_t st_size
Definition stat.h:74
nlink_t st_nlink
Definition stat.h:70
time_t st_ctime
Definition stat.h:79
blksize_t st_blksize
Definition stat.h:75
blkcnt_t st_blocks
Definition stat.h:76
uid_t st_uid
Definition stat.h:71
mode_t st_mode
Definition stat.h:69
time_t st_mtime
Definition stat.h:78
ino_t st_ino
Definition stat.h:68
dev_t st_rdev
Definition stat.h:73
time_t st_atime
Definition stat.h:77
gid_t st_gid
Definition stat.h:72
dev_t st_dev
Definition stat.h:67
int dev_t
Definition types.h:35
unsigned nlink_t
Definition types.h:42
int ino_t
Definition types.h:36
int gid_t
Definition types.h:39
long time_t
Definition types.h:53
int mode_t
Definition types.h:41
unsigned blkcnt_t
Definition types.h:44
unsigned off_t
Definition types.h:37
unsigned blksize_t
Definition types.h:43
int uid_t
Definition types.h:38