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
159 B

  1. #pragma once
  2. #include <stdint.h>
  3. struct linux_dirent64
  4. {
  5. uint64_t d_ino;
  6. int64_t d_off;
  7. uint16_t d_reclen;
  8. uint8_t d_type;
  9. char d_name[];
  10. };