16 lines
268 B
C
Raw Permalink Normal View History

2015-08-04 21:57:37 -04:00
/*
* fs.h
*/
2016-03-06 03:41:07 +01:00
#ifndef FS_INC
#define FS_INC
2015-08-04 21:57:37 -04:00
#include "types.h"
2016-03-06 03:41:07 +01:00
u8 mountSD(void);
u8 fileRead(u8 *dest, const char *path, u32 size);
u8 fileWrite(const u8 *buffer, const char *path, u32 size);
u32 fileSize(const char* path);
u8 fileExists(const char* path);
2015-08-04 21:57:37 -04:00
2016-03-06 03:41:07 +01:00
#endif