2006-08-12 06:33:50 +02:00
|
|
|
struct stat {
|
2006-09-07 16:12:30 +02:00
|
|
|
int dev; // Device number
|
|
|
|
uint ino; // Inode number on device
|
|
|
|
short type; // Type of file
|
|
|
|
short nlink; // Number of links to file
|
|
|
|
uint size; // Size of file in bytes
|
2006-08-12 06:33:50 +02:00
|
|
|
};
|