Posts Tagged ‘rewinddir’

dirfd – get directory stream file descriptor
USAGE
#include <sys/types.h>
#include <dirent.h>

int dirfd(DIR *dir);

DESCRIPTION
The function dirfd() returns the file descriptor associated with the
[...]

Thursday, August 27th, 2009 at 20:51 | Comments Off
Categories: D

closedir – close a directory
USAGE
#include <sys/types.h>

#include <dirent.h>

int closedir(DIR *dir);

DESCRIPTION
The closedir() function closes the directory stream associated with
[...]

Thursday, August 27th, 2009 at 00:25 | Comments Off
Categories: c
TOP