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