add memmem function (gnu extension)
[musl] / include / dirent.h
1 #ifndef _DIRENT_H
2 #define _DIRENT_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <features.h>
9
10 #define __NEED_ino_t
11 #define __NEED_off_t
12 #ifdef _BSD_SOURCE
13 #define __NEED_size_t
14 #endif
15
16 #include <bits/alltypes.h>
17
18 typedef struct __DIR_s DIR;
19
20 struct dirent
21 {
22         ino_t d_ino;
23         off_t d_off;
24         unsigned short d_reclen;
25         unsigned char d_type;
26         char d_name[256];
27 };
28
29 #define d_fileno d_ino
30
31 int            closedir(DIR *);
32 DIR           *fdopendir(int);
33 DIR           *opendir(const char *);
34 struct dirent *readdir(DIR *);
35 int            readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
36 void           rewinddir(DIR *);
37 void           seekdir(DIR *, long);
38 long           telldir(DIR *);
39 int            dirfd(DIR *);
40
41 int alphasort(const struct dirent **, const struct dirent **);
42 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct dirent **, const struct dirent **));
43
44 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
45 #define DT_UNKNOWN 0
46 #define DT_FIFO 1
47 #define DT_CHR 2
48 #define DT_DIR 4
49 #define DT_BLK 6
50 #define DT_REG 8
51 #define DT_LNK 10
52 #define DT_SOCK 12
53 #define DT_WHT 14
54 #define IFTODT(x) ((x)>>12 & 017)
55 #define DTTOIF(x) ((x)<<12)
56 #endif
57
58 #ifdef _GNU_SOURCE
59 int versionsort(const struct dirent **, const struct dirent **);
60 #endif
61
62 #ifdef _BSD_SOURCE
63 int getdents(int, struct dirent *, size_t);
64 #endif
65
66 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
67 #define dirent64 dirent
68 #define readdir64 readdir
69 #define readdir64_r readdir_r
70 #define scandir64 scandir
71 #define alphasort64 alphasort
72 #define versionsort64 versionsort
73 #define off64_t off_t
74 #define ino64_t ino_t
75 #ifdef _BSD_SOURCE
76 #define getdents64 getdents
77 #endif
78 #endif
79
80 #ifdef __cplusplus
81 }
82 #endif
83
84 #endif