2019-06-13 14:29:27 +00:00
|
|
|
#define T_DIR 1 // Directory
|
|
|
|
#define T_FILE 2 // File
|
|
|
|
#define T_DEVICE 3 // Device
|
2009-05-31 00:26:10 +00:00
|
|
|
|
2006-08-12 04:33:50 +00:00
|
|
|
struct stat {
|
2012-08-28 16:57:05 +00:00
|
|
|
int dev; // File system's disk device
|
|
|
|
uint ino; // Inode number
|
2019-07-04 12:54:23 +00:00
|
|
|
short type; // Type of file
|
2006-09-07 14:12:30 +00:00
|
|
|
short nlink; // Number of links to file
|
2019-07-04 12:54:23 +00:00
|
|
|
uint64 size; // Size of file in bytes
|
2006-08-12 04:33:50 +00:00
|
|
|
};
|