14 lines
213 B
C
14 lines
213 B
C
#ifndef DIRENT_H_
|
|
#define DIRENT_H_
|
|
|
|
#define DT_UNKNOWN 0
|
|
#define DT_BLK 1
|
|
#define DT_CHR 2
|
|
#define DT_DIR 3
|
|
#define DT_FIFO 4
|
|
#define DT_LNK 5
|
|
#define DT_REG 6
|
|
#define DT_SOCK 7
|
|
|
|
#endif
|