libc_dirent.h 320 B

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