mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 07:12:15 +00:00
add macros for use with d_type extension field in dirent
This commit is contained in:
parent
9fe28f703d
commit
5d0d6d9836
@ -34,6 +34,20 @@ int dirfd(DIR *);
|
|||||||
int alphasort(const struct dirent **, const struct dirent **);
|
int alphasort(const struct dirent **, const struct dirent **);
|
||||||
int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct dirent **, const struct dirent **));
|
int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct dirent **, const struct dirent **));
|
||||||
|
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
#define DT_UNKNOWN 0
|
||||||
|
#define DT_FIFO 1
|
||||||
|
#define DT_CHR 2
|
||||||
|
#define DT_DIR 4
|
||||||
|
#define DT_BLK 6
|
||||||
|
#define DT_REG 8
|
||||||
|
#define DT_LNK 10
|
||||||
|
#define DT_SOCK 12
|
||||||
|
#define DT_WHT 14
|
||||||
|
#define IFTODT(x) ((x)>>12 & 017)
|
||||||
|
#define DTTOIF(x) ((x)<<12)
|
||||||
|
#endf
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern }
|
extern }
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user