18 lines
451 B
Groff
18 lines
451 B
Groff
SUBROUTINES
|
|
getdents - get directory entries
|
|
|
|
INVOCATION
|
|
int getdents( fildes, buf, nbyte )
|
|
int fildes;
|
|
char *buf;
|
|
unsigned nbyte;
|
|
|
|
EXPLANATION
|
|
Getdents(3) reads directory entries in a file system independent
|
|
format. This routine is only used by readdir(3) and should
|
|
never be used directly by a user's program.
|
|
|
|
REFERENCES
|
|
directory(3), dirent(4)
|
|
|