00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef DIRENT_INCLUDED
00018 #define DIRENT_INCLUDED
00019
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023
00024 typedef struct DIR DIR;
00025
00026 struct dirent
00027 {
00028 char *d_name;
00029 };
00030
00031 DIR *opendir(const char *);
00032 int closedir(DIR *);
00033 struct dirent *readdir(DIR *);
00034 void rewinddir(DIR *);
00035
00036 #ifdef __cplusplus
00037 }
00038 #endif
00039
00040 #endif