mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
10 lines
198 B
C++
10 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);
|
|
}
|