Commentato il codice del server echo basato sulla funzione poll.
[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     char d_name[256];               /* We must not include limits.h! */
7 };