mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-26 10:13:50 +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[];
|
|
};
|