Standard C Library Functions closedir(3C)
NAME
closedir - close a directory stream
SYNOPSIS
#include
#include
int closedir(DIR *dirp);
DESCRIPTION
The closedir() function closes the directory stream referred
to by the argument dirp. Upon return, the value of dirp may no longer point to an accessible object of the type DIR. If a file descriptor is used to implement type DIR, that file descriptor will be closed.RETURN VALUES
Upon successful completion, closedir() returns 0. Otherwise,
-1 is returned and errno is set to indicate the error.
ERRORS
The closedir() function may fail if:
EBADF The dirp argument does not refer to an open direc-
tory stream.EINTR The closedir() function was interrupted by a sig-
nal.ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:SunOS 5.11 Last change: 24 Jul 2002 1
Standard C Library Functions closedir(3C)
____________________________________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|_____________________________|_____________________________|
| Interface Stability | Committed ||_____________________________|_____________________________|
| MT-Level | Safe |
|_____________________________|_____________________________|
| Standard | See standards(5). ||_____________________________|_____________________________|
SEE ALSO
opendir(3C), attributes(5), standards(5)SunOS 5.11 Last change: 24 Jul 2002 2