Zephyr API Documentation
3.6.0
A Scalable Open Source RTOS
3.6.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
Zephyr API Documentation
►
Introduction
Deprecated List
►
Modules
►
Data Structures
▼
Files
►
File List
►
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
dirent.h
Go to the documentation of this file.
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
9
#include <
limits.h
>
10
#include "
posix_types.h
"
11
12
#ifdef CONFIG_POSIX_FS
13
#include <
zephyr/fs/fs.h
>
14
15
#ifdef __cplusplus
16
extern
"C"
{
17
#endif
18
19
typedef
void
DIR;
20
21
struct
dirent {
22
unsigned
int
d_ino;
23
char
d_name[
PATH_MAX
+ 1];
24
};
25
26
/* Directory related operations */
27
DIR *opendir(
const
char
*dirname);
28
int
closedir(DIR *dirp);
29
struct
dirent *readdir(DIR *dirp);
30
31
#ifdef __cplusplus
32
}
33
#endif
34
35
#endif
/* CONFIG_POSIX_FS */
36
37
#endif
/* ZEPHYR_INCLUDE_POSIX_DIRENT_H_ */
fs.h
limits.h
PATH_MAX
#define PATH_MAX
Definition:
limits.h:83
posix_types.h
zephyr
posix
dirent.h
Generated on Sat Feb 24 2024 03:45:05 for Zephyr API Documentation by
1.9.6