18 lines
326 B
C
18 lines
326 B
C
/*
|
|
* fs.h
|
|
*/
|
|
|
|
#ifndef __fs_h__
|
|
#define __fs_h__
|
|
|
|
#include "types.h"
|
|
|
|
int mountSD();
|
|
int unmountSD();
|
|
int fileReadOffset(u8 *dest, const char *path, u32 size, u32 offset);
|
|
int fileRead(u8 *dest, const char *path, u32 size);
|
|
int fileWrite(const u8 *buffer, const char *path, u32 size);
|
|
int fileSize(const char* path);
|
|
|
|
#endif
|