mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-09 04:39:10 +08:00
![Antonio SJ Musumeci](/assets/img/avatar_default.png)
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[];
|
|
};
|