File nut/include/dirent.h
Included Files
#include <nut/include/include/stdint.h>
#include <nut/include/sys/file.h>
Preprocessor definitions
#define _DIRENT_H_
#define MAXNAMLEN 255
Type struct dirent
struct dirent
struct dirent
{
uint32_t d_fileno;
uint16_t d_reclen;
uint8_t d_type;
uint8_t d_namlen;
char d_name[255+1];
}
Typedef DIR
typedef struct _dirdesc DIR
struct _dirdesc
{
NUTFILE* dd_fd;
char* dd_buf;
size_t dd_len;
}