xv6-cs450/stat.h

8 lines
203 B
C
Raw Normal View History

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
};