aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/inode.cpp
blob: c18891798a099e811b58869e6314f719821ed0a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <kernel/filesystem/inode.hpp>

namespace kernel::filesystem
{
  auto inode::is_directory() const -> bool
  {
    return false;
  }

  auto inode::is_regular() const -> bool
  {
    return false;
  }

  auto inode::is_device() const -> bool
  {
    return false;
  }

  auto inode::is_symbolic_link() const -> bool
  {
    return false;
  }
}  // namespace kernel::filesystem