mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-25 09:41:43 +08:00
17 lines
268 B
C
17 lines
268 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#define DIRENT_NAMELEN(X) (strlen((X)->name))
|
|
|
|
typedef struct linux_dirent64_t linux_dirent64_t;
|
|
struct linux_dirent64_t
|
|
{
|
|
uint64_t ino;
|
|
int64_t off;
|
|
uint16_t reclen;
|
|
uint8_t type;
|
|
char name[];
|
|
};
|