Pointer to an array which will receive a number of variable length dirent64 structures:
struc dirent64
{
.d_ino rq 1
.d_off rq 1
.d_reclen rw 1
.d_type rb 1
.d_name rb 256
} |
rtentry members:
d_ino
inode number.
d_off
Zero based index of the next dirent structure in the array.
d_reclen
Size of this dirent structure.
d_type
*to be documented*
d_name
Null-terminated directory name. This member is actually has a variable size, but cannot exceed NAME_MAX+1 (256) bytes.
|