1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub const C_IRUSR:  ::int_t = 0o000400;
pub const C_IWUSR:  ::int_t = 0o000200;
pub const C_IXUSR:  ::int_t = 0o000100;
pub const C_IRGRP:  ::int_t = 0o000040;
pub const C_IWGRP:  ::int_t = 0o000020;
pub const C_IXGRP:  ::int_t = 0o000010;
pub const C_IROTH:  ::int_t = 0o000004;
pub const C_IWOTH:  ::int_t = 0o000002;
pub const C_IXOTH:  ::int_t = 0o000001;
pub const C_ISUID:  ::int_t = 0o004000;
pub const C_ISGID:  ::int_t = 0o002000;
pub const C_ISVTX:  ::int_t = 0o001000;
pub const C_ISDIR:  ::int_t = 0o040000;
pub const C_ISFIFO: ::int_t = 0o010000;
pub const C_ISREG:  ::int_t = 0o100000;
pub const C_ISBLK:  ::int_t = 0o060000;
pub const C_ISCHR:  ::int_t = 0o020000;
pub const C_ISCTG:  ::int_t = 0o110000;
pub const C_ISLNK:  ::int_t = 0o120000;
pub const C_ISSOCK: ::int_t = 0o140000;

pub const MAGIC: &'static [u8] = b"070707\x00";