Home | History | Annotate | Download | only in include

Lines Matching refs:DIR

61 typedef struct DIR  DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist,