miniOS
x86_64 hobby kernel with SMP, VFS, and POSIX process model
Loading...
Searching...
No Matches
dirent.h
Go to the documentation of this file.
1#ifndef _MINIOS_DIRENT_H_
2#define _MINIOS_DIRENT_H_
3
4#include <miniOS/types.h>
5
6typedef struct {
11 char d_name[];
12} __attribute__((packed)) linux_dirent64_t;
13
14#endif /* _MINIOS_DIRENT_H_ */
uint8_t d_type
Definition dirent.h:10
uint64_t d_ino
Definition dirent.h:7
char d_name[]
Definition dirent.h:11
uint16_t d_reclen
Definition dirent.h:9
int64_t d_off
Definition dirent.h:8
unsigned short uint16_t
Definition types.h:31
signed long int int64_t
Definition types.h:36
unsigned long int uint64_t
Definition types.h:37
unsigned char uint8_t
Definition types.h:28
typedef __attribute__