mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
9528edab92
It's just a wrapper around multiple calls to readInodeBytes() now.
9 lines
201 B
C++
9 lines
201 B
C++
#include "InodeIdentifier.h"
|
|
#include "FileSystem.h"
|
|
|
|
ByteBuffer InodeIdentifier::readEntireFile() const
|
|
{
|
|
if (!fileSystem())
|
|
return { };
|
|
return fileSystem()->readEntireInode(*this);
|
|
}
|