1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef LIBC_DIRENT_H__ 8 #define LIBC_DIRENT_H__ 9 10 #define DT_UNKNOWN 0x00 11 #define DT_REG 0x01 12 #define DT_DIR 0x02 13 14 #endif 15