Home | History | Annotate | Download | only in include

Lines Matching refs:DIR

63 typedef struct DIR DIR;
65 extern DIR* opendir(const char*);
66 extern DIR* fdopendir(int);
67 extern struct dirent* readdir(DIR*);
68 extern struct dirent64* readdir64(DIR*);
69 extern int readdir_r(DIR*, struct dirent*, struct dirent**);
70 extern int readdir64_r(DIR*, struct dirent64*, struct dirent64**);
71 extern int closedir(DIR*);
72 extern void rewinddir(DIR*);
73 extern int dirfd(DIR*);