Kernel: Split the Plan9FileSystem.{cpp,h} file into smaller components

This commit is contained in:
Liav A 2022-10-24 10:28:24 +03:00 committed by Andrew Kaster
commit 3fc52a6d1c
Notes: sideshowbarker 2024-07-17 06:00:02 +09:00
10 changed files with 1138 additions and 1058 deletions

View file

@ -0,0 +1,19 @@
/*
* Copyright (c) 2020, Sergey Bugaev <bugaevc@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace Kernel {
struct Plan9FSQIdentifier {
u8 type;
u32 version;
u64 path;
};
}