• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * dirent.h
3  */
4 
5 #ifndef _DIRENT_H
6 #define _DIRENT_H
7 
8 #include <klibc/extern.h>
9 #include <klibc/compiler.h>
10 #include <stddef.h>
11 #include <sys/types.h>
12 
13 #include <sys/dirent.h>
14 
15 __extern DIR *opendir(const char *);
16 __extern struct dirent *readdir(DIR *);
17 __extern int closedir(DIR *);
18 __extern DIR *fdopendir(int);
19 
20 #endif /* Not _DIRENT_H */
21