dirent.h 215 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_DIRENT_H
  3. #define _LINUX_DIRENT_H
  4. struct linux_dirent64 {
  5. u64 d_ino;
  6. s64 d_off;
  7. unsigned short d_reclen;
  8. unsigned char d_type;
  9. char d_name[];
  10. };
  11. #endif