Varie correzioni, completata revisione capitolo sull'I/O su file
[gapil.git] / listati / dirent.c
1 struct dirent {
2     ino_t d_ino;                    /* inode number */
3     off_t d_off;                    /* offset to the next dirent */
4     unsigned short int d_reclen;    /* length of this record */
5     unsigned char d_type;           /* type of file;
6                                        by all file system types */
7     char d_name[256];               /* filename */
8 };