libc_dirent.h 264 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2006-2021, 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_REG 0x01
  10. #define DT_DIR 0x02
  11. #endif