Headers dirent.h(3HEAD)
NAME
dirent.h, dirent - format of directory entries
SYNOPSIS
#include
DESCRIPTION
The internal format of directories is unspecified. The
header defines the following type:
DIR A type representing a directory stream.
The header also defines the structure dirent, which includes
the following members:
inot dino /* file serial number */
char dname[] /* name of entry */
The type inot is defined as described in . See
types(3HEAD).
The character array dname is of unspecified size, but the
number of bytes preceding the terminating null byte must not
exceed {NAMEMAX}.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Standard
SEE ALSO
closedir(3C), opendir(3C), readdir(3C), rewinddir(3C),
seekdir(3C), telldir(3C), types.h(3HEAD), attributes(5),
standards(5)
SunOS 5.11 Last change: 10 Sep 2004 1
|