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