fts.3: Give a hint that there are further fields in the FTSENT structure

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-02-06 07:16:46 +01:00
parent 6110d89af1
commit 90882d77f2
1 changed files with 10 additions and 2 deletions

View File

@ -107,8 +107,10 @@ are generally interchangeable.
The
.I FTSENT
structure contains at least the following fields, which are
described in greater detail below:
structure contains fields describing a file.
The structure contains at least the following fields
(there are additional fields that
should be considered private to the implementation):
.in +4n
.nf
@ -127,6 +129,12 @@ typedef struct _ftsent {
struct _ftsent *fts_link; /* next file structure */
struct _ftsent *fts_cycle; /* cycle structure */
struct stat *fts_statp; /* stat(2) information */
.\" Also:
.\" ino_t fts_ino; /* inode (only for directories)*/
.\" dev_t fts_dev; /* device (only for directories)*/
.\" nlink_t fts_nlink; /* link count (only for directories)*/
.\" u_short fts_flags; /* private flags for FTSENT structure */
.\" u_short fts_instr; /* fts_set() instructions */
} FTSENT;
.fi
.in