libc_dirent.h 298 B

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