Content-type: text/html Man page of closedir

closedir

Section: Standard C Library Functions (3C)
Updated: 24 Jul 2002
Index Return to Main Contents
 

NAME

closedir - close a directory stream  

SYNOPSIS

#include <sys/types.h>
#include <dirent.h>

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 directory stream.

EINTR The closedir() function was interrupted by a signal.

 

ATTRIBUTES

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPEATTRIBUTE VALUE
Interface StabilityStandard
MT-LevelSafe

 

SEE ALSO

opendir(3C), attributes(5), standards(5)


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUES
ERRORS
ATTRIBUTES
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 02:37:26 GMT, October 02, 2010