mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-28 14:50:24 +00:00
10 lines
195 B
C++
10 lines
195 B
C++
|
|
#include "InodeIdentifier.h"
|
||
|
|
#include "FileSystem.h"
|
||
|
|
|
||
|
|
ByteBuffer InodeIdentifier::readEntireFile() const
|
||
|
|
{
|
||
|
|
if (!fileSystem())
|
||
|
|
return { };
|
||
|
|
return fileSystem()->readInode(*this);
|
||
|
|
}
|