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