dirent.h 653 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. int is_dir;
  20. };
  21. /* Directory related operations */
  22. extern DIR *opendir(const char *dirname);
  23. extern int closedir(DIR *dirp);
  24. extern struct dirent *readdir(DIR *dirp);
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif /* CONFIG_POSIX_FS */
  29. #endif /* ZEPHYR_INCLUDE_POSIX_DIRENT_H_ */