closedir - close a directory stream
#include <sys/types.h> #include <dirent.h> int closedir(DIR *dirp);
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.
Upon successful completion, closedir() returns 0. Otherwise, -1 is returned and errno is set to indicate the error.
The closedir() function may fail if:
EBADF
EINTR
See attributes(5) for descriptions of the following attributes:
|
opendir(3C), attributes(5), standards(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |