mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-04-21 12:31:43 +00:00
Differences between readdir and getdents is minimal at best. Leaving code for now to allow for possible expansion later.
10 lines
133 B
C
10 lines
133 B
C
#pragma once
|
|
|
|
struct linux_dirent
|
|
{
|
|
unsigned long ino;
|
|
unsigned long off;
|
|
unsigned short reclen;
|
|
char name[];
|
|
};
|