mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 20:13:57 +08:00
13 lines
149 B
C
13 lines
149 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct linux_dirent64
|
||
|
{
|
||
|
uint64_t ino;
|
||
|
int64_t off;
|
||
|
uint16_t reclen;
|
||
|
uint8_t type;
|
||
|
char name[];
|
||
|
};
|