mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-13 11:14:59 +08:00
13 lines
159 B
C
13 lines
159 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct linux_dirent64
|
||
|
{
|
||
|
uint64_t d_ino;
|
||
|
int64_t d_off;
|
||
|
uint16_t d_reclen;
|
||
|
uint8_t d_type;
|
||
|
char d_name[];
|
||
|
};
|