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