mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Import all this stuff into a single repo called Serenity.
This commit is contained in:
commit
5a30055157
Notes:
sideshowbarker
2024-07-19 18:51:29 +09:00
Author: https://github.com/awesomekling 🔰
Commit: 5a30055157
67 changed files with 8836 additions and 0 deletions
9
VirtualFileSystem/InodeIdentifier.cpp
Normal file
9
VirtualFileSystem/InodeIdentifier.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "InodeIdentifier.h"
|
||||
#include "FileSystem.h"
|
||||
|
||||
ByteBuffer InodeIdentifier::readEntireFile() const
|
||||
{
|
||||
if (!fileSystem())
|
||||
return { };
|
||||
return fileSystem()->readInode(*this);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue