aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/fs.h
blob: 58b23db57b47d8588669dc2baf8e6f519e980055 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MELVIX_FS_H
#define MELVIX_FS_H

#include <stdint.h>

u32 get_file_size(char *path);
u32 read(char *path, u32 offset, u32 count, u8 *buf);
u32 write(char *path, u32 offset, u32 count, u8 *buf);
u8 *read_file(char *path); // Only for temp kernel reads

#endif