Blame view
include/linux/dirent.h
177 Bytes
1da177e4c
|
1 2 |
#ifndef _LINUX_DIRENT_H #define _LINUX_DIRENT_H |
1da177e4c
|
3 4 5 6 7 8 9 |
struct linux_dirent64 { u64 d_ino; s64 d_off; unsigned short d_reclen; unsigned char d_type; char d_name[0]; }; |
1da177e4c
|
10 |
#endif |