xv6-cs450/stat.h
2006-09-07 14:12:30 +00:00

8 lines
203 B
C

struct stat {
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
};