|
|
1.1 root 1: /*
2: * Inode structure as returned from stat
3: */
4: typedef struct
5: {
6: int i_dev;
7: int i_ino;
8: int i_mode;
9: char i_nlink;
10: char i_uid;
11: char i_gid;
12: char i_size0;
13: char *i_size1;
14: int i_addr[8];
15: long i_atime;
16: long i_mtime;
17: } STATBUF;
18:
19: /* modes */
20: #define IALLOC 0100000
21: #define IFMT 060000
22: #define IFDIR 040000
23: #define IFCHR 020000
24: #define IFBLK 060000
25: #define ILARG 010000
26: #define ISUID 04000
27: #define ISGID 02000
28: #define ISVTX 01000
29: #define IREAD 0400
30: #define IWRITE 0200
31: #define IEXEC 0100
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.