mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 08:03:30 +08:00
9 lines
159 B
C
9 lines
159 B
C
|
#ifndef LIBC_DIRENT_H__
|
||
|
#define LIBC_DIRENT_H__
|
||
|
|
||
|
#define DT_UNKNOWN 0x00
|
||
|
#define DT_REG 0x01
|
||
|
#define DT_DIR 0x02
|
||
|
|
||
|
#endif
|