00001 #ifndef DIRENT_INCLUDED
00002 #define DIRENT_INCLUDED
00003
00014 #ifdef __cplusplus
00015 extern "C" {
00016 #endif
00017
00019 typedef struct DIR DIR;
00020
00022 struct dirent {
00023 char *d_name;
00024 };
00025
00027 DIR *opendir ( const char * );
00029 int closedir ( DIR * );
00031 struct dirent *readdir ( DIR * );
00033 void rewinddir ( DIR * );
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 #ifdef __cplusplus
00051 }
00052 #endif
00053
00054 #endif