dirent.h 640 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_DIRENT_H_
  7. #define ZEPHYR_INCLUDE_POSIX_DIRENT_H_
  8. #include <limits.h>
  9. #include "posix_types.h"
  10. #ifdef CONFIG_POSIX_FS
  11. #include <fs/fs.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. typedef void DIR;
  16. struct dirent {
  17. unsigned int d_ino;
  18. char d_name[PATH_MAX + 1];
  19. };
  20. /* Directory related operations */
  21. extern DIR *opendir(const char *dirname);
  22. extern int closedir(DIR *dirp);
  23. extern struct dirent *readdir(DIR *dirp);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* CONFIG_POSIX_FS */
  28. #endif /* ZEPHYR_INCLUDE_POSIX_DIRENT_H_ */