mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 20:58:44 +08:00
Compare commits
2 commits
51169d2a85
...
de867b77a3
Author | SHA1 | Date | |
---|---|---|---|
|
de867b77a3 | ||
|
96cd2e390f |
2 changed files with 2 additions and 0 deletions
|
@ -112,6 +112,7 @@
|
|||
|
||||
struct dirent
|
||||
{
|
||||
ino_t d_ino; /* file number */
|
||||
uint8_t d_type; /* Type of file */
|
||||
char d_name[NAME_MAX + 1]; /* File name */
|
||||
};
|
||||
|
|
|
@ -152,6 +152,7 @@ struct nuttx_timespec
|
|||
|
||||
struct nuttx_dirent_s
|
||||
{
|
||||
ino_t d_ino; /* file number */
|
||||
uint8_t d_type; /* type of file */
|
||||
char d_name[CONFIG_NAME_MAX + 1]; /* filename */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue