mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 12:04:58 +00:00
9 lines
198 B
C++
9 lines
198 B
C++
#include "InodeIdentifier.h"
|
|
#include "FileSystem.h"
|
|
|
|
ByteBuffer InodeIdentifier::read_entire_file() const
|
|
{
|
|
if (!fs())
|
|
return { };
|
|
return fs()->read_entire_inode(*this, nullptr);
|
|
}
|