mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 10:25:22 +00:00
From POSIX http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html """ The <dirent.h> header shall define the following type: DIR ... also define the structure dirent """ etc. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
38 lines
624 B
C
38 lines
624 B
C
/*
|
|
* Copyright (c) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef ZEPHYR_INCLUDE_POSIX_DIRENT_H_
|
|
#define ZEPHYR_INCLUDE_POSIX_DIRENT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <limits.h>
|
|
#include "sys/types.h"
|
|
|
|
#ifdef CONFIG_POSIX_FS
|
|
#include <fs.h>
|
|
|
|
typedef struct fs_dir_t DIR;
|
|
|
|
struct dirent {
|
|
unsigned int d_ino;
|
|
char d_name[PATH_MAX + 1];
|
|
};
|
|
|
|
/* Directory related operations */
|
|
extern DIR *opendir(const char *dirname);
|
|
extern int closedir(DIR *dirp);
|
|
extern struct dirent *readdir(DIR *dirp);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_POSIX_DIRENT_H_ */
|