summaryrefslogtreecommitdiff
path: root/stat.h
blob: bc3a06c747ec0552e023cda856e92e6f6ca36aee (plain)
1
2
3
4
5
6
7
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
};