musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/include/dirent.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011年03月07日 18:32:36 -0500
committerRich Felker <dalias@aerifal.cx>2011年03月07日 18:32:36 -0500
commit5d0d6d983664cc3816d63432397271719dade83c (patch)
treece412cc98aeb879ccce64890fc6a2438188717df /include/dirent.h
parent9fe28f703d44ff1ddecdca945bfb5fc87de5e8ad (diff)
downloadmusl-5d0d6d983664cc3816d63432397271719dade83c.tar.gz
add macros for use with d_type extension field in dirent
Diffstat (limited to 'include/dirent.h')
-rw-r--r--include/dirent.h 14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h
index a9170936..a9806294 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -34,6 +34,20 @@ int dirfd(DIR *);
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 **));
+#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
extern }
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月02日 20:16:39 +0000

AltStyle によって変換されたページ (->オリジナル) /