π¨βπ»
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) | |
| #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH) | |
| #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH) | |
| #define ACCESS_TO_STAT(mask, user_mask) (((((mask)&R_OK)?S_IRUGO:0)|(((mask)&W_OK)?S_IWUGO:0)|(((mask)&X_OK)?S_IXUGO:0))&(user_mask)) | |
| #define STAT_TO_ACCESS(mode, user_mask) ((((mode)&(user_mask)&S_IRUGO)?R_OK:0)|(((mode)&(user_mask)&S_IWUGO)?W_OK:0)|(((mode)&(user_mask)&S_IXUGO)?X_OK:0)) | |
| // Usage: ACCESS_TO_STAT(R_OK | W_OK | X_OK, S_IRWXU) => 0700 | |
| // ACCESS_TO_STAT(R_OK | W_OK, ACCESSPERMS) => 0666 | |
| // ACCESS_TO_STAT(X_OK, S_IRWXU|S_IRWXO) => 0101 |
NewerOlder