You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
149 B

  1. #pragma once
  2. #include <stdint.h>
  3. struct linux_dirent64
  4. {
  5. uint64_t ino;
  6. int64_t off;
  7. uint16_t reclen;
  8. uint8_t type;
  9. char name[];
  10. };