• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct stat {
2 	dev_t st_dev;
3 	int __pad1[3];
4 	ino_t st_ino;
5 	mode_t st_mode;
6 	nlink_t st_nlink;
7 	uid_t st_uid;
8 	gid_t st_gid;
9 	dev_t st_rdev;
10 	unsigned int __pad2[2];
11 	off_t st_size;
12 	int __pad3;
13 	struct timespec st_atim;
14 	struct timespec st_mtim;
15 	struct timespec st_ctim;
16 	blksize_t st_blksize;
17 	unsigned int __pad4;
18 	blkcnt_t st_blocks;
19 	int __pad5[14];
20 };
21