Versione finale del client ECHO su TCP, con esempio di uso della funzione
[gapil.git] / listati / stat.h
1 struct stat {
2     dev_t         st_dev;      /* device */
3     ino_t         st_ino;      /* inode */
4     mode_t        st_mode;     /* protection */
5     nlink_t       st_nlink;    /* number of hard links */
6     uid_t         st_uid;      /* user ID of owner */
7     gid_t         st_gid;      /* group ID of owner */
8     dev_t         st_rdev;     /* device type (if inode device) */
9     off_t         st_size;     /* total size, in bytes */
10     unsigned long st_blksize;  /* blocksize for filesystem I/O */
11     unsigned long st_blocks;   /* number of blocks allocated */
12     time_t        st_atime;    /* time of last access */
13     time_t        st_mtime;    /* time of last modification */
14     time_t        st_ctime;    /* time of last change */
15 };