CS350 COS
COS
Loading...
Searching...
No Matches
stat.h
Go to the documentation of this file.
1
2#ifndef __SYS_STAT_H__
3#define __SYS_STAT_H__
4
5struct stat {
7 // mode
8 // uid
9 // gid
10 // timespec st_atim, st_mtim, st_ctim
12 size_t st_blocks;
13 size_t st_blksize;
14};
15
16#endif /* __SYS_STAT_H__ */
17
off_t st_size
Definition: stat.h:11
ino_t st_ino
Definition: stat.h:6
size_t st_blocks
Definition: stat.h:12
size_t st_blksize
Definition: stat.h:13
Definition: stat.h:5
int64_t off_t
Definition: types.h:20
uint64_t ino_t
Definition: types.h:23