39 lines
1.0 KiB
C
39 lines
1.0 KiB
C
#ifndef __wasilibc___mode_t_h
|
|
#define __wasilibc___mode_t_h
|
|
|
|
#define S_IFMT \
|
|
(S_IFBLK | S_IFCHR | S_IFDIR | S_IFIFO | S_IFLNK | S_IFREG | S_IFSOCK)
|
|
#define S_IFBLK (0x6000)
|
|
#define S_IFCHR (0x2000)
|
|
#define S_IFDIR (0x4000)
|
|
#define S_IFLNK (0xa000)
|
|
#define S_IFREG (0x8000)
|
|
#define S_IFSOCK (0xc000)
|
|
#define S_IFIFO (0xc000)
|
|
|
|
#define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK)
|
|
#define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR)
|
|
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
|
|
#define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO)
|
|
#define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK)
|
|
#define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
|
|
#define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK)
|
|
|
|
#define S_IXOTH (0x1)
|
|
#define S_IWOTH (0x2)
|
|
#define S_IROTH (0x4)
|
|
#define S_IRWXO (S_IXOTH | S_IWOTH | S_IROTH)
|
|
#define S_IXGRP (0x8)
|
|
#define S_IWGRP (0x10)
|
|
#define S_IRGRP (0x20)
|
|
#define S_IRWXG (S_IXGRP | S_IWGRP | S_IRGRP)
|
|
#define S_IXUSR (0x40)
|
|
#define S_IWUSR (0x80)
|
|
#define S_IRUSR (0x100)
|
|
#define S_IRWXU (S_IXUSR | S_IWUSR | S_IRUSR)
|
|
#define S_ISVTX (0x200)
|
|
#define S_ISGID (0x400)
|
|
#define S_ISUID (0x800)
|
|
|
|
#endif
|