Lines Matching refs:DIR
56 typedef struct DIR DIR;
58 extern DIR* opendir(const char* dirpath);
59 extern DIR* fdopendir(int fd);
60 extern struct dirent* readdir(DIR* dirp);
61 extern int readdir_r(DIR* dirp, struct dirent* entry, struct dirent** result);
62 extern int closedir(DIR* dirp);
63 extern void rewinddir(DIR* dirp);
64 extern int dirfd(DIR* dirp);
66 extern int scandir(const char* dir, struct dirent*** namelist,