|
KallistiOS git master
Independent SDK for the Sega Dreamcast
|
Directory entry functionality. More...
#include <sys/cdefs.h>#include <unistd.h>#include <stdint.h>#include <kos/fs.h>#include <kos/limits.h>Go to the source code of this file.
Data Structures | |
| struct | dirent |
| POSIX directory entry structure. More... | |
| struct | DIR |
| Type representing a directory stream. More... | |
Macros | |
Directory File Types | |
POSIX file types for dirent::d_type
| |
| #define | DT_UNKNOWN 0 |
| Unknown. | |
| #define | DT_FIFO 1 |
| Named Pipe or FIFO. | |
| #define | DT_CHR 2 |
| Character Device. | |
| #define | DT_DIR 4 |
| Directory. | |
| #define | DT_BLK 6 |
| Block Device. | |
| #define | DT_REG 8 |
| Regular File. | |
| #define | DT_LNK 10 |
| Symbolic Link. | |
| #define | DT_SOCK 12 |
| Local-Domain Socket. | |
| #define | DT_WHT 14 |
| Whiteout (ignored) | |
Directory entry functionality.
This partially implements the standard POSIX dirent.h functionality.