MOS Source Code
Loading...
Searching...
No Matches
inode.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-3.0-or-later
2
3#pragma once
4
6
7void inode_ref(inode_t *inode);
8
9[[nodiscard]] bool inode_unref(inode_t *inode);
10
18bool inode_unlink(inode_t *dir, dentry_t *dentry);
void inode_ref(inode_t *inode)
Definition inode.c:72
bool inode_unlink(inode_t *dir, dentry_t *dentry)
Unlink a dentry from its parent inode.
Definition inode.c:86
bool inode_unref(inode_t *inode)
Definition inode.c:78