mergerfs/libfuse/include/linux_dirent64.h
2020-08-02 18:43:09 -04:00

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[];
};