aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/inode.cpp
blob: f2a77414ea307be2636c9df61e88479491ab6ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
  }
}  // namespace kernel::filesystem