blob: 88dcd95c794564f6580283c88a236ad18a70192b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MELVIX_FS_H
#define MELVIX_FS_H
#include <stdint.h>
uint32_t get_file_size(char *path);
uint32_t read(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
uint32_t write(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
uint8_t *read_file(char *path); // Only for temp kernel reads
#endif
|