#include <sys/dirent.h>
sys/dirent.h
structdirent
| ino_t | d_ino | file number of entry |
| __uint16_t | d_reclen | length of this record |
| __uint8_t | d_type | file type, see below |
| __uint8_t | d_namlen | length of string in d_name |
| char[256] | d_name | name must be no longer than this |
structdirentry
Extended directory entry
| __uint64_t | d_ino | file number of entry |
| __uint64_t | d_seekoff | seek offset (optional, used by servers) |
| __uint16_t | d_reclen | length of this record |
| __uint16_t | d_namlen | length of string in d_name |
| __uint8_t | d_type | file type, see below |
| char[1024] | d_name | entry name (up to MAXPATHLEN bytes) |