blob: 38a545604c2c56873807459ab47ec2153df5fc35 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "filesystem.h"
struct filesystem * fs_parse_superblock(struct filesystem *fs)
{
}
/* resolves an arbitrary path */
uint16_t fs_parse_path(const char *path)
{
}
/* gets inode from inumber */
inode_t * fs_get_inode(inode_t *buffer, uint16_t i_number)
{
}
inode_t * fs_new_inode(inode_t *inode, const char *name)
{
}
int fs_free_inode(const inode_t *inode)
{
}
void fs_chmod(inode_t *inode, uint8_t mode)
{
}
void fs_chown(inode_t *inode, uint8_t uid)
{
}
int fs_rename(inode_t *inode, const char *name)
{
}
|