mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
9 lines
195 B
C++
9 lines
195 B
C++
#include "InodeIdentifier.h"
|
|
#include "FileSystem.h"
|
|
|
|
ByteBuffer InodeIdentifier::readEntireFile() const
|
|
{
|
|
if (!fileSystem())
|
|
return { };
|
|
return fileSystem()->readInode(*this);
|
|
}
|